]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Fix xline reasons being truncated in m_xline_db.
authorPeter Powell <petpow@saberuk.com>
Thu, 29 Jan 2015 15:32:28 +0000 (15:32 +0000)
committerPeter Powell <petpow@saberuk.com>
Thu, 29 Jan 2015 15:32:28 +0000 (15:32 +0000)
This error was introduced in bbeb5ea3.

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;
                        }
                }