about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-08-27 13:57:03 +0000
committerAlexander Barton <alex@barton.de>2002-08-27 13:57:03 +0000
commitf673fb960a4cf099d5ad95d135dc8686da9b45f3 (patch)
tree251c34abc8460d1b416668db860eb33237277bba /src
parent7d30c8cebccf1b0e391333858a9d011d1f0d864e (diff)
downloadngircd-f673fb960a4cf099d5ad95d135dc8686da9b45f3.tar.gz
ngircd-f673fb960a4cf099d5ad95d135dc8686da9b45f3.zip
- an Clients wurden Modes mit fuehrendem ":" geliefert. Das ist zwar RFC-
  konform (IMO), macht aber leider grosse(!!) Probleme :-/
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/irc-channel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/irc-channel.c b/src/ngircd/irc-channel.c
index 9e36c516..7ee157d9 100644
--- a/src/ngircd/irc-channel.c
+++ b/src/ngircd/irc-channel.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-channel.c,v 1.11 2002/08/26 23:39:22 alex Exp $
+ * $Id: irc-channel.c,v 1.12 2002/08/27 13:57:03 alex Exp $
  *
  * irc-channel.c: IRC-Channel-Befehle
  */
@@ -157,7 +157,7 @@ IRC_JOIN( CLIENT *Client, REQUEST *Req )
 		if( modes[1] )
 		{
 			/* Modes im Channel bekannt machen */
-			IRC_WriteStrChannelPrefix( Client, chan, target, FALSE, "MODE %s +%s :%s", channame, &modes[1], Client_ID( target ));
+			IRC_WriteStrChannelPrefix( Client, chan, target, FALSE, "MODE %s +%s %s", channame, &modes[1], Client_ID( target ));
 		}
 
 		if( Client_Type( Client ) == CLIENT_USER )