[asterisk-commits] qwell: trunk r102859 - in /trunk: ./ main/features.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Feb 7 14:02:17 CST 2008
Author: qwell
Date: Thu Feb 7 14:02:17 2008
New Revision: 102859
URL: http://svn.digium.com/view/asterisk?view=rev&rev=102859
Log:
Merged revisions 102858 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r102858 | qwell | 2008-02-07 13:53:55 -0600 (Thu, 07 Feb 2008) | 7 lines
Specify which digit string was matched in debug message.
(closes issue #11949)
Reported by: dimas
Patches:
v1-feature-debug.patch uploaded by dimas (license 88)
........
Modified:
trunk/ (props changed)
trunk/main/features.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/main/features.c
URL: http://svn.digium.com/view/asterisk/trunk/main/features.c?view=diff&rev=102859&r1=102858&r2=102859
==============================================================================
--- trunk/main/features.c (original)
+++ trunk/main/features.c Thu Feb 7 14:02:17 2008
@@ -1562,7 +1562,7 @@
ast_copy_flags(&features, &(config->features_callee), AST_FLAGS_ALL);
dynamic_features = pbx_builtin_getvar_helper(peer, "DYNAMIC_FEATURES");
}
- ast_debug(3, "Feature interpret: chan=%s, peer=%s, sense=%d, features=%d, dynamic=%s\n", chan->name, peer->name, sense, features.flags, dynamic_features);
+ ast_debug(3, "Feature interpret: chan=%s, peer=%s, code=%s, sense=%d, features=%d, dynamic=%s\n", chan->name, peer->name, code, sense, features.flags, dynamic_features);
ast_rwlock_rdlock(&features_lock);
for (x = 0; x < FEATURES_COUNT; x++) {
More information about the asterisk-commits
mailing list