From 70ecd353cb2ffe0463ddfcede3806e9d1b832fc2 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Mon, 17 Nov 2008 22:03:49 +0000 Subject: [PATCH] update git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10432 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_xml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }