[Asterisk-cvs] asterisk/apps app_dial.c,1.128,1.129
markster at lists.digium.com
markster at lists.digium.com
Tue Jan 18 10:44:22 CST 2005
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv3013/apps
Modified Files:
app_dial.c
Log Message:
Fix small app_dial issue (bug #3368)
Index: app_dial.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_dial.c,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -d -r1.128 -r1.129
--- app_dial.c 18 Jan 2005 03:12:53 -0000 1.128
+++ app_dial.c 18 Jan 2005 16:47:33 -0000 1.129
@@ -207,8 +207,8 @@
ast_explicit_goto(chan, chan->context, rexten, pri-1);
return 1;
} else if (!ast_strlen_zero(chan->macrocontext)) {
- if (ast_exists_extension(chan, chan->context, rexten, pri, cid)) {
- ast_explicit_goto(chan, chan->context, rexten, pri-1);
+ if (ast_exists_extension(chan, chan->macrocontext, rexten, pri, cid)) {
+ ast_explicit_goto(chan, chan->macrocontext, rexten, pri-1);
return 1;
}
}
More information about the svn-commits
mailing list