From: Joshua Colp Date: Wed, 20 May 2009 17:14:00 +0000 (+0000) Subject: Fix a bug where the MeetMe option 'D' did not actually prompt for the pin. X-Git-Tag: 1.4.26~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65494bfdf79d0f220e73919bf2475ed319affd09;p=thirdparty%2Fasterisk.git Fix a bug where the MeetMe option 'D' did not actually prompt for the pin. (closes issue #15050) Reported by: pmhaddad git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@195635 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 67c851a2c9..6e35ddda56 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -2710,7 +2710,7 @@ static int conf_exec(struct ast_channel *chan, void *data) empty = ast_test_flag(&confflags, CONFFLAG_EMPTY | CONFFLAG_EMPTYNOPIN); empty_no_pin = ast_test_flag(&confflags, CONFFLAG_EMPTYNOPIN); - always_prompt = ast_test_flag(&confflags, CONFFLAG_ALWAYSPROMPT); + always_prompt = ast_test_flag(&confflags, CONFFLAG_ALWAYSPROMPT | CONFFLAG_DYNAMICPIN); } do {