diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/hashcomp.cpp | 16 | ||||
-rw-r--r-- | src/modules/m_filter.cpp | 5 |
2 files changed, 4 insertions, 17 deletions
diff --git a/src/hashcomp.cpp b/src/hashcomp.cpp index 2288a227e..d510e40b1 100644 --- a/src/hashcomp.cpp +++ b/src/hashcomp.cpp @@ -219,22 +219,6 @@ bool irc::tokenstream::GetToken(std::string &token) return true; } -bool irc::tokenstream::GetToken(int &token) -{ - std::string tok; - bool returnval = GetToken(tok); - token = ConvToInt(tok); - return returnval; -} - -bool irc::tokenstream::GetToken(long &token) -{ - std::string tok; - bool returnval = GetToken(tok); - token = ConvToInt(tok); - return returnval; -} - irc::sepstream::sepstream(const std::string& source, char separator, bool allowempty) : tokens(source), sep(separator), pos(0), allow_empty(allowempty) { diff --git a/src/modules/m_filter.cpp b/src/modules/m_filter.cpp index c039c0455..f7d73ac4a 100644 --- a/src/modules/m_filter.cpp +++ b/src/modules/m_filter.cpp @@ -587,7 +587,10 @@ FilterResult ModuleFilter::DecodeFilter(const std::string &data) if (c != 0) throw ModuleException("Invalid flag: '" + std::string(1, c) + "'"); - tokens.GetToken(res.duration); + std::string duration; + tokens.GetToken(duration); + res.duration = ConvToInt(duration); + tokens.GetToken(res.reason); /* Hax to allow spaces in the freeform without changing the design of the irc protocol */ |