diff options
author | Peter Powell <petpow@saberuk.com> | 2015-01-29 15:32:28 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2015-01-29 15:32:28 +0000 |
commit | 5be578ce5e84c3d71bf2a1ac97fe6793bb124177 (patch) | |
tree | 25f465845057d5d919bab4787a9ad59a45bd1ab2 /src | |
parent | 38bc192dd6d289b8632349c67ef2cafdca3b4159 (diff) |
Fix xline reasons being truncated in m_xline_db.
This error was introduced in bbeb5ea3.
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_xline_db.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } } |