diff options
| author | Alexander Barton <alex@barton.de> | 2002-09-22 21:40:33 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-09-22 21:40:33 +0000 |
| commit | 2b6dbb07e8379888cce62fc51205b0c98a5aeb9f (patch) | |
| tree | 682e1643c5464a4880048316f97cf0ad54b3a7af | |
| parent | 7caf3f842950bb48c7cf918a29d1498eb4d086cb (diff) | |
| download | ngircd-2b6dbb07e8379888cce62fc51205b0c98a5aeb9f.tar.gz ngircd-2b6dbb07e8379888cce62fc51205b0c98a5aeb9f.zip | |
- in RPL_YOURHOST_MSG wurde ein fehlerhafter Versionsstring geliefert.
| -rw-r--r-- | src/ngircd/irc-login.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/irc-login.c b/src/ngircd/irc-login.c index 1cc59582..86b22e14 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.21 2002/09/09 03:34:33 alex Exp $ + * $Id: irc-login.c,v 1.22 2002/09/22 21:40:33 alex Exp $ * * irc-login.c: Anmeldung und Abmeldung im IRC */ @@ -441,7 +441,7 @@ Hello_User( CLIENT *Client ) IRC_WriteStrServers( NULL, "NICK %s 1 %s %s 1 +%s :%s", Client_ID( Client ), Client_User( Client ), Client_Hostname( Client ), Client_Modes( Client ), Client_Info( Client )); if( ! IRC_WriteStrClient( Client, RPL_WELCOME_MSG, Client_ID( Client ), Client_Mask( Client ))) return FALSE; - if( ! IRC_WriteStrClient( Client, RPL_YOURHOST_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )), VERSION, TARGET_CPU, TARGET_CPU, TARGET_OS )) return FALSE; + if( ! IRC_WriteStrClient( Client, RPL_YOURHOST_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )), VERSION, TARGET_CPU, TARGET_VENDOR, TARGET_OS )) return FALSE; if( ! IRC_WriteStrClient( Client, RPL_CREATED_MSG, Client_ID( Client ), NGIRCd_StartStr )) return FALSE; if( ! IRC_WriteStrClient( Client, RPL_MYINFO_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )), VERSION, USERMODES, CHANMODES )) return FALSE; |