diff options
| author | 2015-02-05 17:37:49 +0100 | |
|---|---|---|
| committer | 2015-02-05 17:37:49 +0100 | |
| commit | 0ec19b7ac91eedc83b31c3da733e237bfe28fc48 (patch) | |
| tree | 7e5f094fff870633325c714cee321393fc8d4cf8 /src/modules | |
| parent | Merge pull request #971 from SaberUK/master+numeric-xline (diff) | |
| parent | Fix xline reasons being truncated in m_xline_db. (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; } } |
