]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
issue #5773, with minor modification to log message
authorJosh Roberson <josh@asteriasgi.com>
Sun, 20 Nov 2005 05:58:40 +0000 (05:58 +0000)
committerJosh Roberson <josh@asteriasgi.com>
Sun, 20 Nov 2005 05:58:40 +0000 (05:58 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7142 65c4cc65-6c06-0410-ace0-fbb531ad65f3

ChangeLog
apps/app_meetme.c

index 4987af501c2dc26edb97d34cf6b7da8fa7e51188..4368877fe0384a7a9f1f49fc45a40b475ecc0b68 100755 (executable)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2005-11-20  Josh Roberson <josh@asteriasgi.com>
 
+       * apps/app_meetme.c: fix 'X' option in MeetMe, with slight modification. (issue #5773)
+
        * apps/app_voicemail.c: Make sure we're copying the read digits when calling voicemail without a box. (issue #5774)
 
        * apps/app_md5.c: Fix conditional jump option.
index 3bdb789d3906e2f58a5a945f80e2d2cc1c813a78..c656d0aae009ac4b7fc38f5c6818530451711b4d 100755 (executable)
@@ -1314,7 +1314,8 @@ 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)) {
+                                               ast_log(LOG_DEBUG, "Got DTMF %c, goto context %s\n", tmp[0], exitcontext);
                                                ret = 0;
                                                break;
                                        } else if (option_debug > 1)