[Asterisk-cvs] asterisk/apps app_meetme.c,1.53,1.54
markster at lists.digium.com
markster at lists.digium.com
Sun Aug 1 23:12:13 CDT 2004
Update of /usr/cvsroot/asterisk/apps
In directory localhost.localdomain:/tmp/cvs-serv28084/apps
Modified Files:
app_meetme.c
Log Message:
Correct for user selecting 'D' when they should be selecting 'd' (bug #2200)
Index: app_meetme.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_meetme.c,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -d -r1.53 -r1.54
--- app_meetme.c 28 Jul 2004 19:25:14 -0000 1.53
+++ app_meetme.c 2 Aug 2004 02:58:15 -0000 1.54
@@ -1082,6 +1082,12 @@
}
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;
}
More information about the svn-commits
mailing list