summaryrefslogtreecommitdiff
path: root/src/modules/m_xline_db.cpp
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2019-08-13 20:11:11 +0100
committerPeter Powell <petpow@saberuk.com>2019-08-13 20:11:11 +0100
commit2d35c3396a1f00375d45b874dafb9e0bdb520a9b (patch)
treeba19a394ea07799ea94ec31da6c85646fe3bd6eb /src/modules/m_xline_db.cpp
parent0827c5c7425a17b6a569a9f706b5b3dea8fa345a (diff)
Fix some remaining uses of ato[il].
Diffstat (limited to 'src/modules/m_xline_db.cpp')
-rw-r--r--src/modules/m_xline_db.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_xline_db.cpp b/src/modules/m_xline_db.cpp
index 00605f259..97531aae8 100644
--- a/src/modules/m_xline_db.cpp
+++ b/src/modules/m_xline_db.cpp
@@ -211,8 +211,8 @@ class ModuleXLineDB
continue;
}
- XLine* xl = xlf->Generate(ServerInstance->Time(), atoi(command_p[5].c_str()), command_p[3], command_p[6], command_p[2]);
- xl->SetCreateTime(atoi(command_p[4].c_str()));
+ XLine* xl = xlf->Generate(ServerInstance->Time(), ConvToNum<unsigned long>(command_p[5]), command_p[3], command_p[6], command_p[2]);
+ xl->SetCreateTime(ConvToNum<time_t>(command_p[4]));
if (ServerInstance->XLines->AddLine(xl, NULL))
{