[asterisk-commits] russell: branch 1.4 r43703 -
/branches/1.4/channels/chan_sip.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Tue Sep 26 13:30:37 MST 2006
Author: russell
Date: Tue Sep 26 15:30:36 2006
New Revision: 43703
URL: http://svn.digium.com/view/asterisk?rev=43703&view=rev
Log:
Add missing newline character in the warning message about deprecated TOS values
in configuration.
Modified:
branches/1.4/channels/chan_sip.c
Modified: branches/1.4/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_sip.c?rev=43703&r1=43702&r2=43703&view=diff
==============================================================================
--- branches/1.4/channels/chan_sip.c (original)
+++ branches/1.4/channels/chan_sip.c Tue Sep 26 15:30:36 2006
@@ -15911,7 +15911,7 @@
global_tos_sip = temp_tos;
global_tos_audio = temp_tos;
global_tos_video = temp_tos;
- ast_log(LOG_WARNING, "tos value at line %d is deprecated. See doc/ip-tos.txt for more information.", v->lineno);
+ ast_log(LOG_WARNING, "tos value at line %d is deprecated. See doc/ip-tos.txt for more information.\n", v->lineno);
} else
ast_log(LOG_WARNING, "Invalid tos value at line %d, See doc/ip-tos.txt for more information.\n", v->lineno);
} else if (!strcasecmp(v->name, "tos_sip")) {
More information about the asterisk-commits
mailing list