From f15a9749f9afc23e32e029ac495a53d24ac281b8 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 12 Aug 2013 14:36:49 -0400 Subject: Use less strict valid ident checks on hybrid, unreal, and inspircd --- modules/protocol/ratbox.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'modules/protocol/ratbox.cpp') diff --git a/modules/protocol/ratbox.cpp b/modules/protocol/ratbox.cpp index b7716bce1..dc6cef168 100644 --- a/modules/protocol/ratbox.cpp +++ b/modules/protocol/ratbox.cpp @@ -42,6 +42,7 @@ class RatboxProto : public IRCDProto void SendModeInternal(const MessageSource &source, User *u, const Anope::string &buf) anope_override { hybrid->SendModeInternal(source, u, buf); } void SendChannel(Channel *c) anope_override { hybrid->SendChannel(c); } void SendTopic(const MessageSource &source, Channel *c) anope_override { hybrid->SendTopic(source, c); } + bool IsIdentValid(const Anope::string &ident) anope_override { return hybrid->IsIdentValid(ident); } void SendConnect() anope_override { -- cgit