diff options
author | Adam <Adam@anope.org> | 2010-06-26 21:12:31 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-06-26 21:12:31 -0400 |
commit | 36c646c7d2d4d0f057081c765f9048fc7ae751bf (patch) | |
tree | 9a5810343c197e6abd0048ebfa5e7b12b7d2b3e3 /src/modes.cpp | |
parent | 4e31757f1467b36034e1dcef10d78533ff302d57 (diff) |
Added support for InspIRCd 2.0s dynamic modes.
Note that this changes the maximum length of an acceptable
IRC message from 512 to 1024 because InspIRCd sends messages
longer than 512 characters.
Diffstat (limited to 'src/modes.cpp')
-rw-r--r-- | src/modes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modes.cpp b/src/modes.cpp index dce375488..506f9e483 100644 --- a/src/modes.cpp +++ b/src/modes.cpp @@ -360,7 +360,7 @@ void ChannelModeExcept::DelMask(Channel *chan, const char *mask) * @param chan The channel * @param mask The invex */ -void ChannelModeInvite::AddMask(Channel *chan, const char *mask) +void ChannelModeInvex::AddMask(Channel *chan, const char *mask) { Entry *invite; @@ -387,7 +387,7 @@ void ChannelModeInvite::AddMask(Channel *chan, const char *mask) * @param chan The channel * @param mask The index */ -void ChannelModeInvite::DelMask(Channel *chan, const char *mask) +void ChannelModeInvex::DelMask(Channel *chan, const char *mask) { Entry *invite; |