projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3a31b40
)
put the channel in autoservice when executing func_shell
author
Russell Bryant
<russell@russellbryant.com>
Wed, 19 Sep 2007 19:54:58 +0000
(19:54 +0000)
committer
Russell Bryant
<russell@russellbryant.com>
Wed, 19 Sep 2007 19:54:58 +0000
(19:54 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@83181
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
funcs/func_shell.c
patch
|
blob
|
history
diff --git
a/funcs/func_shell.c
b/funcs/func_shell.c
index
668631a
..
9653fca
100644
(file)
--- a/
funcs/func_shell.c
+++ b/
funcs/func_shell.c
@@
-49,6
+49,8
@@
static int shell_helper(struct ast_channel *chan, const char *cmd, char *data,
return -1;
}
+ ast_autoservice_start(chan);
+
if (len >= 1) {
FILE *ptr;
char plbuff[4096];
@@
-60,6
+62,8
@@
static int shell_helper(struct ast_channel *chan, const char *cmd, char *data,
pclose(ptr);
}
+ ast_autoservice_stop(chan);
+
return 0;
}