[svn-commits] tilghman: branch 1.6.2 r264753 - in /branches/1.6.2: ./ apps/app_stack.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Thu May 20 16:30:21 CDT 2010
Author: tilghman
Date: Thu May 20 16:30:19 2010
New Revision: 264753
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=264753
Log:
Merged revisions 264752 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r264752 | tilghman | 2010-05-20 16:28:53 -0500 (Thu, 20 May 2010) | 7 lines
Error message fix.
(closes issue #17356)
Reported by: kenner
Patches:
app_stack.c.diff uploaded by kenner (license 1040)
........
Modified:
branches/1.6.2/ (props changed)
branches/1.6.2/apps/app_stack.c
Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.2/apps/app_stack.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/apps/app_stack.c?view=diff&rev=264753&r1=264752&r2=264753
==============================================================================
--- branches/1.6.2/apps/app_stack.c (original)
+++ branches/1.6.2/apps/app_stack.c Thu May 20 16:30:19 2010
@@ -400,7 +400,7 @@
if (!ast_exists_extension(chan, chan->context, chan->exten, ast_test_flag(chan, AST_FLAG_IN_AUTOLOOP) ? chan->priority + 1 : chan->priority, chan->cid.cid_num)) {
ast_log(LOG_ERROR, "Attempt to reach a non-existent destination for gosub: (Context:%s, Extension:%s, Priority:%d)\n",
- chan->context, chan->exten, chan->priority);
+ chan->context, chan->exten, ast_test_flag(chan, AST_FLAG_IN_AUTOLOOP) ? chan->priority + 1 : chan->priority);
ast_copy_string(chan->context, newframe->context, sizeof(chan->context));
ast_copy_string(chan->exten, newframe->extension, sizeof(chan->exten));
chan->priority = newframe->priority;
More information about the svn-commits
mailing list