diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-02-05 17:37:49 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-02-05 17:37:49 +0100 |
commit | 0ec19b7ac91eedc83b31c3da733e237bfe28fc48 (patch) | |
tree | 7e5f094fff870633325c714cee321393fc8d4cf8 /src/modules | |
parent | 8c71a2a6304f0d77aa7738e04a44f366a158cadd (diff) | |
parent | 5be578ce5e84c3d71bf2a1ac97fe6793bb124177 (diff) |
Merge pull request #976 from SaberUK/master+fix-xline-db
Fix xline reasons being truncated in m_xline_db.
Diffstat (limited to 'src/modules')
-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; } } |