aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_meetme.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-11-05 22:13:37 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-11-05 22:13:37 +0000
commite7f36277e41aa1d5cc9ea6bace18b1bfff3ff520 (patch)
treed898471dc841e21510d5671e72899ed9e25fe5aa /apps/app_meetme.c
parent2e65d126979eebf1d86ee9db3ae7f9aafd62026d (diff)
Merged revisions 228196 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r228196 | tilghman | 2009-11-05 16:12:45 -0600 (Thu, 05 Nov 2009) | 2 lines Yet another error message in the dialplan (thanks, rmudgett/russellb) ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@228197 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 6d6923ad5..0268554ac 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -5821,7 +5821,8 @@ static int acf_meetme_info(struct ast_channel *chan, const char *cmd, char *data
if (result > -1) {
snprintf(buf, len, "%d", result);
} else if (result == -1) {
- snprintf(buf, len, "%s %s", "Error: invalid keyword:", args.keyword);
+ ast_log(LOG_NOTICE, "Error: invalid keyword: '%s'\n", args.keyword);
+ snprintf(buf, len, "0");
} else if (result == -2) {
ast_log(LOG_NOTICE, "Error: conference (%s) not found\n", args.confno);
snprintf(buf, len, "0");