summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-09-08 00:52:55 +0000
committerAlexander Barton <alex@barton.de>2002-09-08 00:52:55 +0000
commit53f76a1dade488108c74129b58f15bc72c9ecb06 (patch)
treea5f7ff9f063e0fffc2fbe2c105fefc8c86a528d4 /src
parentce4b71945993f6db1ac1e91bf18116c6d16e24a7 (diff)
downloadngircd-53f76a1dade488108c74129b58f15bc72c9ecb06.tar.gz
ngircd-53f76a1dade488108c74129b58f15bc72c9ecb06.zip
- den BAN-Befehl gibt es gar nicht ;-)
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/irc-op.h3
-rw-r--r--src/ngircd/parse.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/src/ngircd/irc-op.h b/src/ngircd/irc-op.h
index 106fb22d..21622db4 100644
--- a/src/ngircd/irc-op.h
+++ b/src/ngircd/irc-op.h
@@ -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-op.h,v 1.1 2002/05/27 11:22:07 alex Exp $
+ * $Id: irc-op.h,v 1.2 2002/09/08 00:52:55 alex Exp $
  *
  * irc-op.h: Befehle zur Channel-Verwaltung (Header)
  */
@@ -20,7 +20,6 @@
 
 
 GLOBAL BOOLEAN IRC_KICK PARAMS(( CLIENT *Client, REQUEST *Req ));
-GLOBAL BOOLEAN IRC_BAN PARAMS(( CLIENT *Client, REQUEST *Req ));
 GLOBAL BOOLEAN IRC_INVITE PARAMS(( CLIENT *Client, REQUEST *Req ));
 
 
diff --git a/src/ngircd/parse.c b/src/ngircd/parse.c
index c884b31d..b5b444b7 100644
--- a/src/ngircd/parse.c
+++ b/src/ngircd/parse.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: parse.c,v 1.39 2002/09/07 17:57:31 alex Exp $
+ * $Id: parse.c,v 1.40 2002/09/08 00:53:13 alex Exp $
  *
  * parse.c: Parsen der Client-Anfragen
  */
@@ -347,7 +347,6 @@ Handle_Request( CONN_ID Idx, REQUEST *Req )
 	else if( strcasecmp( Req->command, "LIST" ) == 0 ) return IRC_LIST( client, Req );
 	else if( strcasecmp( Req->command, "INVITE" ) == 0 ) return IRC_INVITE( client, Req );
 	else if( strcasecmp( Req->command, "KICK" ) == 0 ) return IRC_KICK( client, Req );
-	else if( strcasecmp( Req->command, "BAN" ) == 0 ) return IRC_BAN( client, Req );
 	else if( strcasecmp( Req->command, "CONNECT" ) == 0 ) return IRC_CONNECT( client, Req );
 #ifdef IRCPLUS
 	else if( strcasecmp( Req->command, "CHANINFO" ) == 0 ) return IRC_CHANINFO( client, Req );