From: Olle Johansson Date: Mon, 13 Nov 2006 16:08:12 +0000 (+0000) Subject: Only produce error message once, don't fill the screen with them... X-Git-Tag: 1.6.0-beta1~3^2~4015 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffc1dc331acc3f033bcdbfe46964db3d05f4c512;p=thirdparty%2Fasterisk.git Only produce error message once, don't fill the screen with them... (Testing SIPP thanks to JerJer and Greg) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@47541 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index cc97297a8b..5f3490809c 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -10753,12 +10753,16 @@ static void sip_dump_history(struct sip_pvt *dialog) { int x = 0; struct sip_history *hist; + static errmsg = 0; if (!dialog) return; if (!option_debug && !sipdebug) { - ast_log(LOG_NOTICE, "You must have debugging enabled (SIP or Asterisk) in order to dump SIP history.\n"); + if (!errmsg) { + ast_log(LOG_NOTICE, "You must have debugging enabled (SIP or Asterisk) in order to dump SIP history.\n"); + errmsg = 1; + } return; }