From 37b3ed8ef39bb0e3e4f730f354a646b4cdc36e8e Mon Sep 17 00:00:00 2001 From: Adam Date: Tue, 27 May 2014 12:49:22 -0400 Subject: [PATCH] Do not normalize extban masks --- src/protocol.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/protocol.cpp b/src/protocol.cpp index 17b43e292..692ce005a 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -436,6 +436,8 @@ unsigned IRCDProto::GetMaxListFor(Channel *c) Anope::string IRCDProto::NormalizeMask(const Anope::string &mask) { + if (IsExtbanValid(mask)) + return mask; return Entry("", mask).GetNUHMask(); }