about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2006-12-02 14:10:48 +0000
committerFlorian Westphal <fw@strlen.de>2006-12-02 14:10:48 +0000
commit37602d1523f63b903f77d4a3c9685203d625d799 (patch)
tree30c4eb5563f9ac5bbf2395717979d5cb6543863f
parenta09034563aa46d99a4d061d182e15e12cc393efd (diff)
downloadngircd-37602d1523f63b903f77d4a3c9685203d625d799.tar.gz
ngircd-37602d1523f63b903f77d4a3c9685203d625d799.zip
Log(LOG_DEBUG, .. -> LogDebug()
-rw-r--r--src/ngircd/irc-server.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/ngircd/irc-server.c b/src/ngircd/irc-server.c
index 3d64e1fe..c58e7dcb 100644
--- a/src/ngircd/irc-server.c
+++ b/src/ngircd/irc-server.c
@@ -14,7 +14,7 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: irc-server.c,v 1.41 2006/10/06 21:32:58 fw Exp $";
+static char UNUSED id[] = "$Id: irc-server.c,v 1.42 2006/12/02 14:10:48 fw Exp $";
 
 #include "imp.h"
 #include <assert.h>
@@ -67,9 +67,8 @@ IRC_SERVER( CLIENT *Client, REQUEST *Req )
 	if (Client_Type(Client) == CLIENT_GOTPASS) {
 		/* We got a PASS command from the peer, and now a SERVER
 		 * command: the peer tries to register itself as a server. */
-		Log(LOG_DEBUG,
-		    "Connection %d: got SERVER command (new server link) ...",
-		    Client_Conn(Client));
+		LogDebug("Connection %d: got SERVER command (new server link) ...",
+			Client_Conn(Client));
 
 		/* Falsche Anzahl Parameter? */
 		if(( Req->argc != 2 ) && ( Req->argc != 3 )) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );