put the channel in autoservice when executing func_shell

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@83181 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2007-09-19 19:54:58 +00:00
parent 3a31b40b6f
commit 2897a41de8

View File

@@ -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;
}