aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2009-05-20 17:16:49 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2009-05-20 17:16:49 +0000
commita269725c540056e2a0672af6c173ec216127bf3f (patch)
tree70df3d0b7a2490f84b2ad3bd3b4888ae1d3b80fc /apps
parent1f7ffc5ff2d2258dc7675ebe4a819ab01d7289a3 (diff)
Merged revisions 195636 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r195636 | file | 2009-05-20 14:14:42 -0300 (Wed, 20 May 2009) | 12 lines Merged revisions 195635 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r195635 | file | 2009-05-20 14:14:00 -0300 (Wed, 20 May 2009) | 5 lines Fix a bug where the MeetMe option 'D' did not actually prompt for the pin. (closes issue #15050) Reported by: pmhaddad ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@195639 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_meetme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index f5b630b8c..60f0724b6 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -3697,7 +3697,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 {