diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-02 00:44:06 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-02 00:44:06 +0000 |
commit | fbe8169b82cb071dd57b66941093df654aa7b22c (patch) | |
tree | cfed61b7350374c3a3d69f5f61540b454d8f082d /src/modes | |
parent | deb6822302cb9009adc3450dd405817cc0dae9cd (diff) |
Use CheckTimeStamp to merge modes on netburst
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11596 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modes')
-rw-r--r-- | src/modes/cmode_k.cpp | 6 | ||||
-rw-r--r-- | src/modes/cmode_l.cpp | 2 |
2 files changed, 1 insertions, 7 deletions
diff --git a/src/modes/cmode_k.cpp b/src/modes/cmode_k.cpp index 59d401ebb..b270966da 100644 --- a/src/modes/cmode_k.cpp +++ b/src/modes/cmode_k.cpp @@ -61,12 +61,6 @@ void ModeChannelKey::RemoveMode(User*, irc::modestacker* stack) { } -bool ModeChannelKey::CheckTimeStamp(time_t, time_t, const std::string &their_param, const std::string &our_param, Channel*) -{ - /* When TS is equal, the alphabetically later channel key wins */ - return (their_param < our_param); -} - ModeAction ModeChannelKey::OnModeChange(User* source, User*, Channel* channel, std::string ¶meter, bool adding, bool servermode) { bool exists = channel->IsModeSet('k'); diff --git a/src/modes/cmode_l.cpp b/src/modes/cmode_l.cpp index f20256e87..d60c9b3a7 100644 --- a/src/modes/cmode_l.cpp +++ b/src/modes/cmode_l.cpp @@ -34,7 +34,7 @@ ModePair ModeChannelLimit::ModeSet(User*, User*, Channel* channel, const std::st } } -bool ModeChannelLimit::CheckTimeStamp(time_t, time_t, const std::string &their_param, const std::string &our_param, Channel*) +bool ModeChannelLimit::CheckTimeStamp(std::string &their_param, const std::string &our_param, Channel*) { /* When TS is equal, the higher channel limit wins */ return (atoi(their_param.c_str()) < atoi(our_param.c_str())); |