summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/modes/cmode_b.h3
-rw-r--r--src/modes/cmode_b.cpp8
2 files changed, 9 insertions, 2 deletions
diff --git a/include/modes/cmode_b.h b/include/modes/cmode_b.h
index 4c41e3250..60462d73a 100644
--- a/include/modes/cmode_b.h
+++ b/include/modes/cmode_b.h
@@ -1,7 +1,10 @@
#include "mode.h"
+#include "channels.h"
class ModeChannelBan : public ModeHandler
{
+ private:
+ BanItem b;
public:
ModeChannelBan();
ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding);
diff --git a/src/modes/cmode_b.cpp b/src/modes/cmode_b.cpp
index 5865836da..aa57c74d0 100644
--- a/src/modes/cmode_b.cpp
+++ b/src/modes/cmode_b.cpp
@@ -28,14 +28,18 @@ ModeChannelBan::ModeChannelBan() : ModeHandler('b', 1, 1, true, MODETYPE_CHANNEL
ModeAction ModeChannelBan::OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding)
{
int status = cstatus(source, channel);
+ /* Call the correct method depending on wether we're adding or removing the mode */
adding ? parameter = this->AddBan(source, parameter, channel, status) : parameter = this->DelBan(source, parameter, channel, status);
+ /* If the method above 'ate' the parameter by reducing it to an empty string, then
+ * it won't matter wether we return ALLOW or DENY here, as an empty string overrides
+ * the return value and is always MODEACTION_DENY if the mode is supposed to have
+ * a parameter.
+ */
return MODEACTION_ALLOW;
}
std::string& ModeChannelBan::AddBan(userrec *user,std::string &dest,chanrec *chan,int status)
{
- BanItem b;
-
if ((!user) || (!chan))
{
log(DEFAULT,"*** BUG *** AddBan was given an invalid parameter");