summaryrefslogtreecommitdiff
path: root/apps/app_system.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2002-06-21 01:40:13 +0000
committerMark Spencer <markster@digium.com>2002-06-21 01:40:13 +0000
commit123613853b67efeb0b5bcd5ffe880f1a519ff43a (patch)
treeeb3b9515fd164afd1e2242b99a26c047f8719bfe /apps/app_system.c
parent9086941a867f6a7ec0d5dbe32cce2a0f154831f2 (diff)
Version 0.1.12 from FTP
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@465 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_system.c')
-rwxr-xr-xapps/app_system.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/app_system.c b/apps/app_system.c
index a4369125f..539515e4e 100755
--- a/apps/app_system.c
+++ b/apps/app_system.c
@@ -11,6 +11,7 @@
* the GNU General Public License
*/
+#include <asterisk/lock.h>
#include <asterisk/file.h>
#include <asterisk/logger.h>
#include <asterisk/channel.h>
@@ -53,10 +54,10 @@ static int skel_exec(struct ast_channel *chan, void *data)
/* Do our thing here */
res = system((char *)data);
if (res < 0) {
- ast_log(LOG_WARNING, "Unable to execute '%s'\n", data);
+ ast_log(LOG_WARNING, "Unable to execute '%s'\n", (char *)data);
res = -1;
} else if (res == 127) {
- ast_log(LOG_WARNING, "Unable to execute '%s'\n", data);
+ ast_log(LOG_WARNING, "Unable to execute '%s'\n", (char *)data);
res = -1;
} else {
if (res && ast_exists_extension(chan, chan->context, chan->exten, chan->priority + 101, chan->callerid))