From b3ceaa6a9ef31d084b0eb8cfa4717cebfe9298ed Mon Sep 17 00:00:00 2001 From: russell Date: Wed, 1 Aug 2007 15:39:54 +0000 Subject: 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: http://svn.digium.com/svn/asterisk/trunk@77858 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_osplookup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/app_osplookup.c') diff --git a/apps/app_osplookup.c b/apps/app_osplookup.c index dd75b57fd..3e7f9b2b3 100644 --- a/apps/app_osplookup.c +++ b/apps/app_osplookup.c @@ -1734,7 +1734,7 @@ static int ospfinished_exec( ast_debug(1, "OSPFinish: connect '%ld'\n", connect); ast_debug(1, "OSPFinish: end '%ld'\n", end); - release = chan->_softhangup ? 0 : 1; + release = ast_check_hangup(chan) ? 0 : 1; if (osp_finish(outhandle, recorded, cause, start, connect, end, release) <= 0) { ast_debug(1, "OSPFinish: Unable to report usage for outbound call\n"); -- cgit v1.2.3