diff options
-rw-r--r-- | modules/protocol/inspircd3.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/protocol/inspircd3.cpp b/modules/protocol/inspircd3.cpp index 210d12043..58687f2d2 100644 --- a/modules/protocol/inspircd3.cpp +++ b/modules/protocol/inspircd3.cpp @@ -12,7 +12,6 @@ #include "module.h" #include "modules/cs_mode.h" #include "modules/sasl.h" -#include <limits> struct SASLUser { @@ -1433,11 +1432,10 @@ struct IRCDMessageEndburst : IRCDMessage void Run(MessageSource &source, const std::vector<Anope::string> ¶ms) anope_override { Server *s = source.GetServer(); + Log(LOG_DEBUG) << "Processed ENDBURST for " << s->GetName(); - s->Sync(true); - // Once connected the InspIRCd S2S protocol has no max message length. - IRCD->MaxLine = std::numeric_limits<unsigned>::max(); + s->Sync(true); } }; |