dect
/
asterisk
Archived
13
0
Fork 0

Fix handling when MONITOR_EXEC is unspecified

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3141 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2004-06-03 23:16:55 +00:00
parent c2b797959b
commit e78b7ada36
1 changed files with 4 additions and 2 deletions

View File

@ -233,8 +233,10 @@ int ast_monitor_stop( struct ast_channel *chan, int need_lock )
soxmix = 1;
}
snprintf(tmp, sizeof(tmp), "%s %s/%s-in.%s %s/%s-out.%s %s/%s.%s &", execute, dir, name, format, dir, name, format, dir, name, format);
if (soxmix)
snprintf(tmp2,sizeof(tmp2), "%s& rm -f %s/%s-* &",tmp, dir ,name); /* remove legs when done mixing */
if (soxmix) {
snprintf(tmp2,sizeof(tmp2), "( %s && rm -f %s/%s-* ) &",tmp, dir ,name); /* remove legs when done mixing */
strncpy(tmp, tmp2, sizeof(tmp) - 1);
}
ast_verbose("monitor executing %s\n",tmp);
if (ast_safe_system(tmp) == -1)
ast_log(LOG_WARNING, "Execute of %s failed.\n",tmp);