aboutsummaryrefslogtreecommitdiffstats
path: root/src/modes/umode_n.cpp
diff options
context:
space:
mode:
authorGravatar aquanight2008-05-18 23:15:53 +0000
committerGravatar aquanight2008-05-18 23:15:53 +0000
commit4b856bda135a08e800b96c970a10b0b6a34d433a (patch)
tree3a0b4e7e263cb84223ace2c9eef15ce46f9f5907 /src/modes/umode_n.cpp
parentThis conflicted a few hours ago apparantly (????) (diff)
downloadinspircd++-4b856bda135a08e800b96c970a10b0b6a34d433a.tar.gz
inspircd++-4b856bda135a08e800b96c970a10b0b6a34d433a.tar.bz2
inspircd++-4b856bda135a08e800b96c970a10b0b6a34d433a.zip
Make User:: nick/ident/dhost/fullname and some other things std::string instead of char*/char[] (MODULES DO NOT COMPILE)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9748 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modes/umode_n.cpp')
-rw-r--r--src/modes/umode_n.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modes/umode_n.cpp b/src/modes/umode_n.cpp
index fe75fd222..ed08b60f4 100644
--- a/src/modes/umode_n.cpp
+++ b/src/modes/umode_n.cpp
@@ -24,7 +24,7 @@ ModeUserServerNoticeMask::ModeUserServerNoticeMask(InspIRCd* Instance) : ModeHan
ModeAction ModeUserServerNoticeMask::OnModeChange(User* source, User* dest, Channel*, std::string &parameter, bool adding, bool servermode)
{
/* Only opers can change other users modes */
- if ((source != dest) && (!*source->oper))
+ if ((source != dest) && (!IS_OPER(source)))
return MODEACTION_DENY;
/* Set the array fields */