aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_monitor.c
diff options
context:
space:
mode:
authoranthm <anthm@f38db490-d61c-443f-a65b-d21fe96a405b>2004-06-07 16:51:21 +0000
committeranthm <anthm@f38db490-d61c-443f-a65b-d21fe96a405b>2004-06-07 16:51:21 +0000
commit4896966654e2ccb58cf0b005a22f5837275ca54f (patch)
treef98d64f0335b160394e1d4ffb9aef8be7c87aa13 /res/res_monitor.c
parentc9069312b341a451898bfee6914fc9809830d613 (diff)
fix res_monitor bug
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3167 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/res_monitor.c')
-rwxr-xr-xres/res_monitor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_monitor.c b/res/res_monitor.c
index 3f85b1f1e..2f028ca93 100755
--- a/res/res_monitor.c
+++ b/res/res_monitor.c
@@ -235,7 +235,7 @@ int ast_monitor_stop( struct ast_channel *chan, int need_lock )
}
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 */
+ 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);