summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-13 16:11:08 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-13 16:11:08 +0000
commit8c00f38e5b8efc96504b36ddbdadc12e007a9a13 (patch)
tree47a06b96403cfb06b65fcbcd6961f3684ea6c835 /include
parent1ed779491fd46606b4ee3e258abe0d81e8207422 (diff)
Made MAXCHANS growable for opers/ulines (growing of list not implemented yet)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2367 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/users.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/users.h b/include/users.h
index 0e5937667..dbe1215ea 100644
--- a/include/users.h
+++ b/include/users.h
@@ -146,7 +146,7 @@ class userrec : public connection
*/
char modes[54];
- ucrec chans[MAXCHANS];
+ std::vector<ucrec> chans;
/** The server the user is connected to.
*/