diff options
author | Adam <Adam@anope.org> | 2011-06-14 18:23:53 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-06-14 18:23:53 -0400 |
commit | df971befb2ec95d69b7bb5bce49f4105ee916c2a (patch) | |
tree | 35b2a04ca610af184f01f0d1e250d3ff4bdf9a43 /src/misc.cpp | |
parent | 1cd65878dbdae1d64f70522c3586897a9a7adc36 (diff) |
Fixed a few small things
Diffstat (limited to 'src/misc.cpp')
-rw-r--r-- | src/misc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc.cpp b/src/misc.cpp index 897335b00..6b88a5846 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -261,7 +261,7 @@ Anope::string do_strftime(const time_t &t, NickCore *nc, bool short_output) Anope::string expire_left(NickCore *nc, time_t expires) { if (!expires) - return GetString(nc, gtl(NO_EXPIRE)); + return GetString(nc, NO_EXPIRE); else if (expires <= Anope::CurTime) return GetString(nc, gtl("expires at next database update")); else |