summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMartin Pycko <martinp@digium.com>2003-04-23 23:54:48 +0000
committerMartin Pycko <martinp@digium.com>2003-04-23 23:54:48 +0000
commit562fc888b572441e348a7ef726ea4781b8db70b7 (patch)
tree63a5faa9d4dadb9e12f851bdbe2134634fa05240 /apps
parentb0506b3e4b4d162975f5f61883122d21aacee6b1 (diff)
Fix the previous patch (don't exit from macro when we were invoked from 'h' extension)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@902 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_macro.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_macro.c b/apps/app_macro.c
index 55b3df48a..3e102454b 100755
--- a/apps/app_macro.c
+++ b/apps/app_macro.c
@@ -164,7 +164,7 @@ static int macro_exec(struct ast_channel *chan, void *data)
break;
}
/* don't stop executing extensions when we're in "h" */
- if (chan->_softhangup && strcasecmp(chan->exten,"h")) {
+ if (chan->_softhangup && strcasecmp(oldexten,"h")) {
ast_log(LOG_DEBUG, "Extension %s, priority %d returned normally even though call was hung up\n",
chan->exten, chan->priority);
goto out;