summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2008-02-18 15:47:00 +0000
committerJoshua Colp <jcolp@digium.com>2008-02-18 15:47:00 +0000
commite6a260c7472b6647b1c766b77fa97232616befdc (patch)
tree9aec1a3753946be64d209df12f4081e5c12ede4c /apps
parent67ac1d44daaeda0e18be037c25a6c56dba60b853 (diff)
Add an API call (ast_async_parseable_goto) which parses a goto string and does an async goto instead of an explicit goto.
(closes issue #11753) Reported by: johan git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@103765 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_channelredirect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_channelredirect.c b/apps/app_channelredirect.c
index d92840fce..462942724 100644
--- a/apps/app_channelredirect.c
+++ b/apps/app_channelredirect.c
@@ -72,7 +72,7 @@ static int asyncgoto_exec(struct ast_channel *chan, void *data)
return -1;
}
- res = ast_parseable_goto(chan2, args.label);
+ res = ast_async_parseable_goto(chan2, args.label);
ast_channel_unlock(chan2);