summaryrefslogtreecommitdiff
path: root/funcs/func_env.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2007-12-31 20:33:21 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2007-12-31 20:33:21 +0000
commitf3e2f0bb0a0bed2960871087e3555b5acb239a78 (patch)
tree0cf3b246dfc892b5ba3031dbd0df3a2d1499e564 /funcs/func_env.c
parent3051807efaa790dbcad0305d479671b3938d8b15 (diff)
Merged revisions 95470 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r95470 | tilghman | 2007-12-31 14:27:26 -0600 (Mon, 31 Dec 2007) | 3 lines Allow the default "0" to be returned if the STAT fails (Closes issue #11659) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@95490 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'funcs/func_env.c')
-rw-r--r--funcs/func_env.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/funcs/func_env.c b/funcs/func_env.c
index 90f582e70..4eba211bb 100644
--- a/funcs/func_env.c
+++ b/funcs/func_env.c
@@ -73,7 +73,7 @@ static int stat_read(struct ast_channel *chan, const char *cmd, char *data,
action = strsep(&data, ",");
if (stat(data, &s)) {
- return -1;
+ return 0;
} else {
switch (*action) {
case 'e':