summary refs log tree commit diff
path: root/src/ngircd/irc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ngircd/irc.c')
-rw-r--r--src/ngircd/irc.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ngircd/irc.c b/src/ngircd/irc.c
index 968bcea6..7dafaf05 100644
--- a/src/ngircd/irc.c
+++ b/src/ngircd/irc.c
@@ -138,8 +138,6 @@ IRC_KILL(CLIENT *Client, REQUEST *Req)
 		return IRC_WriteErrClient(Client, ERR_NOPRIVILEGES_MSG,
 					  Client_ID(Client));
 
-	_IRC_ARGC_EQ_OR_RETURN_(Client, Req, 2)
-
 	/* Get prefix (origin); use the client if no prefix is given. */
 	if (Req->prefix)
 		prefix = Client_Search(Req->prefix);
@@ -362,8 +360,6 @@ IRC_HELP(CLIENT *Client, REQUEST *Req)
 
 	IRC_SetPenalty(Client, 2);
 
-	_IRC_ARGC_LE_OR_RETURN_(Client, Req, 1)
-
 	if ((Req->argc == 0 && array_bytes(&Conf_Helptext) > 0)
 	    || (Req->argc >= 1 && strcasecmp(Req->argv[0], "Commands") != 0)) {
 		/* Help text available and requested */