From 5be578ce5e84c3d71bf2a1ac97fe6793bb124177 Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Thu, 29 Jan 2015 15:32:28 +0000 Subject: Fix xline reasons being truncated in m_xline_db. This error was introduced in bbeb5ea3. --- src/modules/m_xline_db.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/m_xline_db.cpp') diff --git a/src/modules/m_xline_db.cpp b/src/modules/m_xline_db.cpp index ae8b209e3..c514ffb76 100644 --- a/src/modules/m_xline_db.cpp +++ b/src/modules/m_xline_db.cpp @@ -120,7 +120,7 @@ class ModuleXLineDB : public Module XLine* line = i->second; stream << "LINE " << line->type << " " << line->Displayable() << " " << ServerInstance->Config->ServerName << " " << line->set_time << " " - << line->duration << " " << line->reason << std::endl; + << line->duration << " :" << line->reason << std::endl; } } -- cgit v1.2.3