aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-05-23 14:55:50 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-05-23 14:55:50 +0000
commitaa2421e49d4ee81561cc9abf0ed43e4fbcf106ed (patch)
treeb4cc903732eb95d36428bd8af91ecfd4d7105147 /apps
parente64e313b830ec3f6eeb851a97120aed7a0380bb3 (diff)
Small fixes
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3046 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_meetme.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 8c4fd3319..290dff2ad 100755
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -51,7 +51,7 @@ static char *descrip =
"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 @@ static char *complete_confcmd(char *line, char *word, int pos, int state) {
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))
;