X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_xline_db.cpp;h=d220027fef5fdb5fe7cbf87e27ecfac92c6e7c02;hb=4132a44396d8fa3d23f87b5cbea5b928aa09769f;hp=ae8b209e35f01d8b0fbd14c2b1108725a5115342;hpb=3a3ff949670c61a4a8856e1391222e156eb1cd17;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_xline_db.cpp b/src/modules/m_xline_db.cpp index ae8b209e3..d220027fe 100644 --- a/src/modules/m_xline_db.cpp +++ b/src/modules/m_xline_db.cpp @@ -64,11 +64,6 @@ class ModuleXLineDB : public Module dirty = true; } - void OnExpireLine(XLine *line) CXX11_OVERRIDE - { - dirty = true; - } - void OnBackgroundTimer(time_t now) CXX11_OVERRIDE { if (dirty) @@ -120,7 +115,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; } }