aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2009-05-20 17:14:00 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2009-05-20 17:14:00 +0000
commita367e35dd3a7323b42ce1721a084e34bacfc3475 (patch)
tree49f6eb04278d5e38aeface801f11a0acd0e0faa1
parente7a2891b57c9b1e480fb0f934fc3d257745b7594 (diff)
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.4@195635 f38db490-d61c-443f-a65b-d21fe96a405b
-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 67c851a2c..6e35ddda5 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 {