From: Anthony Minessale Date: Mon, 17 Nov 2008 22:03:49 +0000 (+0000) Subject: update X-Git-Tag: v1.0.2~488 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=70ecd353cb2ffe0463ddfcede3806e9d1b832fc2;p=thirdparty%2Ffreeswitch.git update git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10432 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/switch_xml.c b/src/switch_xml.c index cb15a5cb07..268312cb8a 100644 --- a/src/switch_xml.c +++ b/src/switch_xml.c @@ -1131,7 +1131,7 @@ static int preprocess_exec(const char *cwd, const char *command, int write_fd, i } else { /* child */ close(fds[0]); dup2(fds[1], STDOUT_FILENO); - system(command); + switch_system(command, SWITCH_TRUE); close(fds[1]); exit(0); }