summaryrefslogtreecommitdiff
path: root/apps/app_zapras.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2007-08-01 15:39:54 +0000
committerRussell Bryant <russell@russellbryant.com>2007-08-01 15:39:54 +0000
commit4e0947c5f1f9c9583bff9f2be1b0c2810263e3e9 (patch)
tree8669ddf483350f2bd54e6b146d9a2a5a56e9c141 /apps/app_zapras.c
parent96b96a5f72e12a5b747aa00e542b964f7312858e (diff)
Convert code that checks the _softhangup member of ast_channel directory to use
the ast_check_hangup() funciton. This function takes scheduled hangups into account. (closes issue #10230, patch by Juggie) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@77858 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_zapras.c')
-rw-r--r--apps/app_zapras.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_zapras.c b/apps/app_zapras.c
index 448c45b7b..3433ba0f1 100644
--- a/apps/app_zapras.c
+++ b/apps/app_zapras.c
@@ -161,7 +161,7 @@ static void run_ras(struct ast_channel *chan, char *args)
res = wait4(pid, &status, WNOHANG, NULL);
if (!res) {
/* Check for hangup */
- if (chan->_softhangup && !signalled) {
+ if (ast_check_hangup(chan) && !signalled) {
ast_debug(1, "Channel '%s' hungup. Signalling RAS at %d to die...\n", chan->name, pid);
kill(pid, SIGTERM);
signalled=1;