]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Merge pull request #976 from SaberUK/master+fix-xline-db
authorAttila Molnar <attilamolnar@hush.com>
Thu, 5 Feb 2015 16:37:49 +0000 (17:37 +0100)
committerAttila Molnar <attilamolnar@hush.com>
Thu, 5 Feb 2015 16:37:49 +0000 (17:37 +0100)
Fix xline reasons being truncated in m_xline_db.

src/modules/m_xline_db.cpp

index ae8b209e35f01d8b0fbd14c2b1108725a5115342..c514ffb76e2230dfc919a915a0899205b15fdc8b 100644 (file)
@@ -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;
                        }
                }