[svn-commits] russell: trunk r164522 - /trunk/channels/chan_iax2.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Dec 15 16:22:44 CST 2008


Author: russell
Date: Mon Dec 15 16:22:43 2008
New Revision: 164522

URL: http://svn.digium.com/view/asterisk?view=rev&rev=164522
Log:
Fix log message to refer to the generic timing interface, not DAHDI specifically

(inspired by issue #14082)

Modified:
    trunk/channels/chan_iax2.c

Modified: trunk/channels/chan_iax2.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_iax2.c?view=diff&rev=164522&r1=164521&r2=164522
==============================================================================
--- trunk/channels/chan_iax2.c (original)
+++ trunk/channels/chan_iax2.c Mon Dec 15 16:22:43 2008
@@ -10795,7 +10795,7 @@
 			} else if (!strcasecmp(v->name, "trunk")) {
 				ast_set2_flag(peer, ast_true(v->value), IAX_TRUNK);	
 				if (ast_test_flag(peer, IAX_TRUNK) && (timingfd < 0)) {
-					ast_log(LOG_WARNING, "Unable to support trunking on peer '%s' without DAHDI timing\n", peer->name);
+					ast_log(LOG_WARNING, "Unable to support trunking on peer '%s' without a timing interface\n", peer->name);
 					ast_clear_flag(peer, IAX_TRUNK);
 				}
 			} else if (!strcasecmp(v->name, "auth")) {




More information about the svn-commits mailing list