From: Mark Michelson Date: Tue, 14 Oct 2008 23:43:58 +0000 (+0000) Subject: Change this warning to an error message. Suggestion X-Git-Tag: 1.4.23-rc1~35 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0145ae287066940c1bd86985ce952482f47b70ee;p=thirdparty%2Fasterisk.git Change this warning to an error message. Suggestion comes from Sean Bright. Thanks Sean! git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@149266 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 31751540ae..b85ec9c796 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -4815,7 +4815,7 @@ static int sip_register(char *value, int lineno) return 0; invalid_char: - ast_log(LOG_WARNING, "A reserved character ('%c') was used in a \"register\" line. This registration will not occur\n", *reserved); + ast_log(LOG_ERROR, "A reserved character ('%c') was used in a \"register\" line. This registration will not occur\n", *reserved); return -1; }