aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_meetme.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-11-05 21:24:21 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-11-05 21:24:21 +0000
commitfeeca11e8c1f2a0fe593b34afd613d73055c10b6 (patch)
tree4656778f38502f14c3001f3bd320a8772a517dcc /apps/app_meetme.c
parent39a676a8382d62b1349d8166c8ec1afbc004365e (diff)
MEETME_INFO should not return a literal error message to the dialplan.
(closes issue #15450) Reported by: JimVanM Patches: meetmeinfopatch.diff.txt uploaded by dbrooks (license 790) Tested by: JimVanM git-svn-id: http://svn.digium.com/svn/asterisk/trunk@228191 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_meetme.c')
-rw-r--r--apps/app_meetme.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index dedb7d14b..d3c317bc0 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -6450,7 +6450,8 @@ static int acf_meetme_info(struct ast_channel *chan, const char *cmd, char *data
} else if (result == -1) {
snprintf(buf, len, "%s %s", "Error: invalid keyword:", args.keyword);
} else if (result == -2) {
- snprintf(buf, len, "Error: conference (%s) not found", args.confno);
+ ast_log(LOG_NOTICE, "Error: conference (%s) not found\n", args.confno);
+ snprintf(buf, len, "0");
}
return 0;