From b02fd7a66d02301fb376bd98d1cdb7234511ca96 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Tue, 29 Mar 2005 06:18:58 +0000 Subject: Make sure ExecIf stuff returns properly (bug #3864) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5297 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_exec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/app_exec.c') diff --git a/apps/app_exec.c b/apps/app_exec.c index 8a46c0797..f4e156927 100755 --- a/apps/app_exec.c +++ b/apps/app_exec.c @@ -37,7 +37,7 @@ static char *exec_descrip = "Exec(appname(arguments))\n" " Allows an arbitrary application to be invoked even when not\n" "hardcoded into the dialplan. Returns whatever value the\n" -"app returns or -2 when the app cannot be found.\n"; +"app returns or a non-zero value when the app cannot be found.\n"; STANDARD_LOCAL_USER; @@ -71,7 +71,7 @@ static int exec_exec(struct ast_channel *chan, void *data) res = pbx_exec(chan, app, args, 1); } else { ast_log(LOG_WARNING, "Could not find application (%s)\n", appname); - res = -2; + res = -1; } } } else { -- cgit v1.2.3