[asterisk-commits] kpfleming: trunk r175250 - /trunk/channels/chan_iax2.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Feb 12 12:48:53 CST 2009
Author: kpfleming
Date: Thu Feb 12 12:48:52 2009
New Revision: 175250
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=175250
Log:
correct warning message to not refer specifically to DAHDI
Modified:
trunk/channels/chan_iax2.c
Modified: trunk/channels/chan_iax2.c
URL: http://svn.digium.com/svn-view/asterisk/trunk/channels/chan_iax2.c?view=diff&rev=175250&r1=175249&r2=175250
==============================================================================
--- trunk/channels/chan_iax2.c (original)
+++ trunk/channels/chan_iax2.c Thu Feb 12 12:48:52 2009
@@ -10962,7 +10962,7 @@
} else if (!strcasecmp(v->name, "trunk")) {
ast_set2_flag(user, ast_true(v->value), IAX_TRUNK);
if (ast_test_flag(user, IAX_TRUNK) && (timingfd < 0)) {
- ast_log(LOG_WARNING, "Unable to support trunking on user '%s' without DAHDI timing\n", user->name);
+ ast_log(LOG_WARNING, "Unable to support trunking on user '%s' without a timing interface\n", user->name);
ast_clear_flag(user, IAX_TRUNK);
}
} else if (!strcasecmp(v->name, "auth")) {
More information about the asterisk-commits
mailing list