From 28fdbd9df79cd24f3a9e1af646a7e5a523b8f237 Mon Sep 17 00:00:00 2001 From: pk910 Date: Sat, 11 Feb 2012 12:24:20 +0100 Subject: [PATCH] fixed cmd_oauthlog (set NICKSERV_MIN_PARMS to 2) --- src/nickserv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nickserv.c b/src/nickserv.c index f521c6a..d98c369 100644 --- a/src/nickserv.c +++ b/src/nickserv.c @@ -2042,7 +2042,7 @@ static MODCMD_FUNC(cmd_authlog) static MODCMD_FUNC(cmd_oauthlog) { struct handle_info *hi; - NICKSERV_MIN_PARMS(1); + NICKSERV_MIN_PARMS(2); if (!(hi = get_victim_oper(user, argv[1]))) return 0; -- 2.20.1