From f195e423f475aba479c1bdd5601b355484c3bd33 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Mon, 2 Aug 2004 02:58:15 +0000 Subject: [PATCH] Correct for user selecting 'D' when they should be selecting 'd' (bug #2200) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3567 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_meetme.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/app_meetme.c b/apps/app_meetme.c index fd40932e3d..c2ff537995 100755 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -1082,6 +1082,12 @@ static struct ast_conference *find_conf(struct ast_channel *chan, char *confno, } ast_destroy(cfg); } + } else { + /* Correct for the user selecting 'D' instead of 'd' to have + someone join into a conference that has already been created + with a pin. */ + if (dynamic_pin[0] == 'q') + dynamic_pin[0] = '\0'; } return cnf; } -- 2.47.2