From: Kevin P. Fleming Date: Thu, 12 Feb 2009 18:48:52 +0000 (+0000) Subject: correct warning message to not refer specifically to DAHDI X-Git-Tag: 1.6.2.0-beta1~246 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1448b5db6a5570f9129d1599bb224e7309d5b31d;p=thirdparty%2Fasterisk.git correct warning message to not refer specifically to DAHDI git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@175250 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c index 33545cf4c2..8e399a02df 100644 --- a/channels/chan_iax2.c +++ b/channels/chan_iax2.c @@ -10962,7 +10962,7 @@ static struct iax2_user *build_user(const char *name, struct ast_variable *v, st } 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")) {