summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-08 13:05:07 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-08 13:05:07 +0000
commit76174ede1d1493bfbd0a9d7fd9ccc954ebe54ffb (patch)
tree56a7fde23c47918a78cb594155e7858650ee85a8
parent55e822ce85f88b5a8919cd9cc305462dd03c99a3 (diff)
chanrec::custom_modes only needs 96 values not 190
(256 - 32 - 128) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3551 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--include/channels.h2
-rw-r--r--src/channels.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/channels.h b/include/channels.h
index 2e1ede57c..96f9d8954 100644
--- a/include/channels.h
+++ b/include/channels.h
@@ -97,7 +97,7 @@ class chanrec : public Extensible
/** Custom modes for the channel.
* Plugins may use this field in any way they see fit.
*/
- char custom_modes[190]; /* modes handled by modules */
+ char custom_modes[96]; /* modes handled by modules */
/** User list (casted to char*'s to stop forward declaration stuff)
* (chicken and egg scenario!)
diff --git a/src/channels.cpp b/src/channels.cpp
index 3b05cf8ea..360996bd5 100644
--- a/src/channels.cpp
+++ b/src/channels.cpp
@@ -73,7 +73,7 @@ chanrec::chanrec()
*name = *topic = *setby = *key = 0;
created = topicset = limit = binarymodes = 0;
internal_userlist.clear();
- memset(&custom_modes,0,190);
+ memset(&custom_modes,0,96);
}
void chanrec::SetCustomMode(char mode,bool mode_on)