summaryrefslogtreecommitdiff
path: root/src/modules/m_xline_db.cpp
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2015-01-29 15:32:28 +0000
committerPeter Powell <petpow@saberuk.com>2015-01-29 15:32:28 +0000
commit5be578ce5e84c3d71bf2a1ac97fe6793bb124177 (patch)
tree25f465845057d5d919bab4787a9ad59a45bd1ab2 /src/modules/m_xline_db.cpp
parent38bc192dd6d289b8632349c67ef2cafdca3b4159 (diff)
Fix xline reasons being truncated in m_xline_db.
This error was introduced in bbeb5ea3.
Diffstat (limited to 'src/modules/m_xline_db.cpp')
-rw-r--r--src/modules/m_xline_db.cpp2
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;
}
}