[asterisk-commits] kmoore: branch 11 r372340 - in /branches/11: ./ main/pbx.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Sep 5 15:48:10 CDT 2012
Author: kmoore
Date: Wed Sep 5 13:36:44 2012
New Revision: 372340
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=372340
Log:
Ensure counts generated in manager_show_dialplan_helper are correct
When manager_show_dialplan_helper was written, the counter increment
for the total number of contexts was placed with the extensions
increment instead of in the enclosing loop. This function should
now generate correct context counts.
(closes issue AST-970)
Reported-by: John Bigelow
........
Merged revisions 372337 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 372338 from http://svn.asterisk.org/svn/asterisk/branches/10
Modified:
branches/11/ (props changed)
branches/11/main/pbx.c
Propchange: branches/11/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.
Modified: branches/11/main/pbx.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/main/pbx.c?view=diff&rev=372340&r1=372339&r2=372340
==============================================================================
--- branches/11/main/pbx.c (original)
+++ branches/11/main/pbx.c Wed Sep 5 13:36:44 2012
@@ -7767,6 +7767,7 @@
continue; /* not the name we want */
dpc->context_existence = 1;
+ dpc->total_context++;
ast_debug(3, "manager_show_dialplan: Found Context: %s \n", ast_get_context_name(c));
@@ -7790,8 +7791,6 @@
dpc->extension_existence = 1;
- /* may we print context info? */
- dpc->total_context++;
dpc->total_exten++;
p = NULL; /* walk next extension peers */
More information about the asterisk-commits
mailing list