X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/2c2e0aa96ec22228874d6ddb859ca4ff99f6023d..8ad278b08812c06f7c7f97a7346f99319ba134a3:/src/hostmask.c diff --git a/src/hostmask.c b/src/hostmask.c index 0b2b160..91b046a 100644 --- a/src/hostmask.c +++ b/src/hostmask.c @@ -404,15 +404,6 @@ find_address_conf(const char *host, const char *sockhost, const char *user, return kconf; } - /* hunt for a gline */ - if(ConfigFileEntry.glines) - { - kconf = find_conf_by_address(host, sockhost, NULL, ip, CONF_GLINE, aftype, user); - - if((kconf != NULL) && !IsConfExemptGline(iconf)) - return kconf; - } - return iconf; } @@ -683,8 +674,6 @@ show_iline_prefix(struct Client *sptr, struct ConfItem *aconf, char *name) *prefix_ptr++ = '='; if(IsOper(sptr) && IsConfExemptFlood(aconf)) *prefix_ptr++ = '|'; - if(IsOper(sptr) && IsConfExemptGline(aconf) && !IsConfExemptKline(aconf)) - *prefix_ptr++ = '_'; if(IsOper(sptr) && IsConfExemptDNSBL(aconf) && !IsConfExemptKline(aconf)) *prefix_ptr++ = '$'; if(IsOper(sptr) && IsConfExemptKline(aconf))