aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-18 15:47:00 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-18 15:47:00 +0000
commitf448f546ff1cca2edbc218cee3275d5c60caa644 (patch)
tree9aec1a3753946be64d209df12f4081e5c12ede4c /apps
parent1031efbc5e3aeebd088dd2de9cf9e56765a18dce (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: http://svn.digium.com/svn/asterisk/trunk@103765 f38db490-d61c-443f-a65b-d21fe96a405b
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);