]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Actually, 64.
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Wed, 8 Mar 2006 13:06:07 +0000 (13:06 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Wed, 8 Mar 2006 13:06:07 +0000 (13:06 +0000)
(256-64-128) = 64 chars printable alphabet (roughly)

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3552 e03df62e-2008-0410-955e-edbf42e46eb7

include/channels.h
src/channels.cpp
src/svn-rev.sh

index 96f9d89546ff54ce9001cc57ca40e29d83940b77..f15464123e96bb688618f89970c61d28d989cb49 100644 (file)
@@ -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[96];     /* modes handled by modules */
+       char custom_modes[64];     /* modes handled by modules */
 
        /** User list (casted to char*'s to stop forward declaration stuff)
         * (chicken and egg scenario!)
index 360996bd591842b25af2cda2390825942b41871e..fdbaf7871a1e2d91a1bbcbe7b5d448befb93a8d4 100644 (file)
@@ -73,7 +73,7 @@ chanrec::chanrec()
        *name = *topic = *setby = *key = 0;
        created = topicset = limit = binarymodes = 0;
        internal_userlist.clear();
-       memset(&custom_modes,0,96);
+       memset(&custom_modes,0,64);
 }
 
 void chanrec::SetCustomMode(char mode,bool mode_on)
index 14c28d3b395c5604416af62563fe19cd9e700259..11d8f9c49f3da2ed8d003b8575d1a71a6c79b9a0 100755 (executable)
@@ -1 +1 @@
-echo 3548
+echo 3551