From aa2239a050cdb2b5e45c9f6d8aad5b422680bc26 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Sun, 20 Nov 2005 23:56:49 +0000 Subject: [PATCH] issue #5773 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-2@7154 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- ChangeLog | 2 ++ apps/app_meetme.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4708a95453..655835e72e 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2005-11-20 Russell Bryant + * apps/app_meetme.c: Fix the 'X' option to the MeetMe application. (issue #5773) + * apps/app_voicemail.c: Correct the use of a mailbox entered by the calling party instead of indicated as an argument to the Voicemail application. (issue #5774) * apps/app_controlplayback.c: Fix logic in checking for success when jumping to priority n+101. diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 3bdb789d39..5c1ca90c15 100755 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -1314,7 +1314,7 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c tmp[0] = f->subclass; tmp[1] = '\0'; - if (ast_goto_if_exists(chan, exitcontext, tmp, 1)) { + if (!ast_goto_if_exists(chan, exitcontext, tmp, 1)) { ret = 0; break; } else if (option_debug > 1)