diff options
author | genius3000 <genius3000@g3k.solutions> | 2018-02-19 23:52:39 -0700 |
---|---|---|
committer | genius3000 <genius3000@g3k.solutions> | 2018-02-19 23:52:39 -0700 |
commit | 3b8a143611a0133d0c62fa499fb4263aeb8b6417 (patch) | |
tree | a3afe8ed6848b7eef0dca1cc406b7ac3c2cd9217 /src | |
parent | af8aed278efcf6d9e04f4863e0fdbf3d261a2e78 (diff) |
Fix typo in XLine::GetExpires() to return the correct field
Diffstat (limited to 'src')
-rw-r--r-- | src/xline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xline.cpp b/src/xline.cpp index 6e19e3602..7f04b0c39 100644 --- a/src/xline.cpp +++ b/src/xline.cpp @@ -176,7 +176,7 @@ void XLine::SetExpires(const time_t &e) time_t XLine::GetExpires() { - return Get(&XLineType::created); + return Get(&XLineType::expires); } const Anope::string &XLine::GetNick() const |