From 3fc9808cc0c900287731cd23edef44521d29ec2e Mon Sep 17 00:00:00 2001 From: Michael Poole Date: Sun, 16 May 2004 03:15:43 +0000 Subject: [PATCH] Include part of Isomer's realname gline fixes that I left out of a previous commit. git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@1065 c9e4aea6-c8fd-4c43-8297-357d70d61c8c --- ircd/s_conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd/s_conf.c b/ircd/s_conf.c index 88020f1..830549d 100644 --- a/ircd/s_conf.c +++ b/ircd/s_conf.c @@ -1189,7 +1189,7 @@ int find_kill(struct Client *cptr) break; if (deny->flags & DENY_FLAGS_REALNAME) { /* K: by real name */ - if (0 == match(deny->hostmask, realname)) + if (0 == match(deny->hostmask + 2, realname)) break; } else if (deny->flags & DENY_FLAGS_IP) { /* k: by IP */ Debug((DEBUG_DEBUG, "ip: %08x network: %08x/%i mask: %08x", -- 2.20.1