[Asterisk-cvs] asterisk/apps app_meetme.c,1.27,1.28
markster at lists.digium.com
markster at lists.digium.com
Sun May 23 10:42:15 CDT 2004
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv4540/apps
Modified Files:
app_meetme.c
Log Message:
Small fixes
Index: app_meetme.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_meetme.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- app_meetme.c 23 May 2004 14:19:45 -0000 1.27
+++ app_meetme.c 23 May 2004 14:55:50 -0000 1.28
@@ -51,7 +51,7 @@
"INSTALLED FOR CONFERENCING TO WORK!\n\n"
"The option string may contain zero or more of the following characters:\n"
-" 'm' -- set monitor only mode (Listen only, no talking\n"
+" 'm' -- set monitor only mode (Listen only, no talking)\n"
" 't' -- set talk only mode. (Talk only, no listening)\n"
" 'p' -- allow user to exit the conference by pressing '#'\n"
" 'd' -- dynamically add conference\n"
@@ -404,7 +404,7 @@
cnf = confs;
/* TODO: Find the conf number from the cmdline (ignore spaces) <- test this and make it fail-safe! */
- myline = strdupa(line);
+ myline = ast_strdupa(line);
if (strsep(&myline, " ") && strsep(&myline, " ") && !confno) {
while((confno = strsep(&myline, " ")) && (strcmp(confno, " ") == 0))
;
More information about the svn-commits
mailing list