Merged revisions 175777 via svnmerge from
authorOlle Johansson <oej@edvina.net>
Sun, 15 Feb 2009 20:18:27 +0000 (20:18 +0000)
committerOlle Johansson <oej@edvina.net>
Sun, 15 Feb 2009 20:18:27 +0000 (20:18 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r175777 | oej | 2009-02-15 20:48:38 +0100 (Sön, 15 Feb 2009) | 2 lines

Make sure that the debug line is not printed on debug level 0

........

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@175783 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index a81b562..686496b 100644 (file)
@@ -16057,7 +16057,7 @@ static int build_reply_digest(struct sip_pvt *p, int method, char* digest, int d
                auth = find_realm_authentication(authl, p->realm);      /* If not, global list */
 
        if (auth) {
-               ast_log(LOG_DEBUG, "use realm [%s] from peer [%s][%s]\n", auth->username, p->peername, p->username);
+               ast_debug(3, "use realm [%s] from peer [%s][%s]\n", auth->username, p->peername, p->username);
                username = auth->username;
                secret = auth->secret;
                md5secret = auth->md5secret;