about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-03-10 17:15:20 +0000
committerAlexander Barton <alex@barton.de>2002-03-10 17:15:20 +0000
commit965855756bc038425ab65645f50ff92d64ce280e (patch)
tree2d8f6a2a1951ce1f88e96ecc640a1557215970d3 /src
parent5bd4734a88fa8c0505bdd03ce3a60e68d4518cd1 (diff)
downloadngircd-965855756bc038425ab65645f50ff92d64ce280e.tar.gz
ngircd-965855756bc038425ab65645f50ff92d64ce280e.zip
- der Bindestrich ("-") ist nun auch in Nicknames erlaubt.
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/client.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ngircd/client.c b/src/ngircd/client.c
index e36dafd5..7e2375e1 100644
--- a/src/ngircd/client.c
+++ b/src/ngircd/client.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: client.c,v 1.44 2002/03/06 14:30:43 alex Exp $
+ * $Id: client.c,v 1.45 2002/03/10 17:15:20 alex Exp $
  *
  * client.c: Management aller Clients
  *
@@ -21,6 +21,9 @@
  * Server gewesen, so existiert eine entsprechende CONNECTION-Struktur.
  *
  * $Log: client.c,v $
+ * Revision 1.45  2002/03/10 17:15:20  alex
+ * - der Bindestrich ("-") ist nun auch in Nicknames erlaubt.
+ *
  * Revision 1.44  2002/03/06 14:30:43  alex
  * - ein paar assert()-Tests ergaenzt.
  *
@@ -980,7 +983,7 @@ GLOBAL BOOLEAN Client_IsValidNick( CHAR *Nick )
 {
 	/* Ist der Nick gueltig? */
 
-	CHAR *ptr, goodchars[] = ";0123456789";
+	CHAR *ptr, goodchars[] = ";0123456789-";
 	
 	assert( Nick != NULL );