repo: ngircd
action: commit
revision: 
path_from: 
revision_from: d81dab99fa28f21054fc7c5678cbd973b0ab5283:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit d81dab99fa28f21054fc7c5678cbd973b0ab5283
Author: Florian Westphal 
Date:   Sat Jun 18 08:57:37 2005 +0000

    put badchars back in

diff --git a/src/ngircd/channel.c b/src/ngircd/channel.c
index 1b7963a2b48c9501c7f199173322c773f9b58ae7..
index ..9ff4c1b5efe26d6a791ba0fe3b3e328b13171b04 100644
--- a/src/ngircd/channel.c
+++ b/src/ngircd/channel.c
@@ -17,7 +17,7 @@

 #include "portab.h"

-static char UNUSED id[] = "$Id: channel.c,v 1.49 2005/06/17 19:16:53 fw Exp $";
+static char UNUSED id[] = "$Id: channel.c,v 1.50 2005/06/18 08:57:37 fw Exp $";

 #include "imp.h"
 #include 
@@ -468,7 +468,7 @@ Channel_IsValidName( char *Name )
 	if(( Name[0] != '#' ) || ( strlen( Name ) >= CHANNEL_NAME_LEN )) return false;

 	ptr = Name;
-	badchars[0] = '\0';
+	strcpy( badchars, " ,:\007" );
 	while( *ptr )
 	{
 		if( strchr( badchars, *ptr )) return false;

-----END OF PAGE-----