diff options
| author | Alexander Barton <alex@barton.de> | 2002-09-09 03:34:33 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-09-09 03:34:33 +0000 |
| commit | 51dabeafaa1dfab6bde2043ee2e5024f14f72780 (patch) | |
| tree | 038b7f6362727466dbd20ccc8f698874711e1be0 | |
| parent | 05fc4a4cb7c2235565ee6d72aeb3961d1d2419f5 (diff) | |
| download | ngircd-51dabeafaa1dfab6bde2043ee2e5024f14f72780.tar.gz ngircd-51dabeafaa1dfab6bde2043ee2e5024f14f72780.zip | |
- Server-Versionsausgabe ueberarbeitet.
| -rw-r--r-- | src/ngircd/irc-login.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ngircd/irc-login.c b/src/ngircd/irc-login.c index cd3fcc61..1cc59582 100644 --- a/src/ngircd/irc-login.c +++ b/src/ngircd/irc-login.c @@ -9,7 +9,7 @@ * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. * - * $Id: irc-login.c,v 1.20 2002/09/03 20:58:43 alex Exp $ + * $Id: irc-login.c,v 1.21 2002/09/09 03:34:33 alex Exp $ * * irc-login.c: Anmeldung und Abmeldung im IRC */ @@ -111,12 +111,12 @@ IRC_PASS( CLIENT *Client, REQUEST *Req ) flags++; } else flags = ""; - Log( LOG_INFO, "Connection %d: Peer announces itself as %s-%s (flags: \"%s\") using protocol version %d.%d+.", Client_Conn( Client ), impl, serverver, flags, protohigh, protolow ); + Log( LOG_INFO, "Connection %d: Peer announces itself as %s-%s using protocol %d.%d/IRC+ (flags: \"%s\").", Client_Conn( Client ), impl, serverver, protohigh, protolow, flags ); } else { serverver = flags = ""; - Log( LOG_INFO, "Connection %d: Peer announces itself as \"%s\" using protocol version %d.%d.", Client_Conn( Client ), impl, protohigh, protolow ); + Log( LOG_INFO, "Connection %d: Peer announces itself as \"%s\" using protocol %d.%d.", Client_Conn( Client ), impl, protohigh, protolow ); } Client_SetType( Client, CLIENT_GOTPASSSERVER ); |