X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Fchannel.h;h=493161b034cb1433fc2690b0e08e4a66259413fb;hp=1bc185a9fa21d05350abccbcc66b6419f9f6ef58;hb=84706af7fec9243f84a3c11a3492f64b3af1cbe6;hpb=46a191caf6bff88f8e4cf1a577ba33a60efb015e diff --git a/src/ngircd/channel.h b/src/ngircd/channel.h index 1bc185a9..493161b0 100644 --- a/src/ngircd/channel.h +++ b/src/ngircd/channel.h @@ -8,7 +8,7 @@ * (at your option) any later version. * Please read the file COPYING, README and AUTHORS for more information. * - * $Id: channel.h,v 1.27 2005/03/19 18:43:48 fw Exp $ + * $Id: channel.h,v 1.28 2005/07/28 16:23:55 fw Exp $ * * Channel management (header) */ @@ -21,6 +21,7 @@ #if defined(__channel_c__) | defined(S_SPLINT_S) #include "defines.h" +#include "array.h" typedef struct _CHANNEL { @@ -28,7 +29,7 @@ typedef struct _CHANNEL char name[CHANNEL_NAME_LEN]; /* Name of the channel */ UINT32 hash; /* Hash of the (lowecase!) name */ char modes[CHANNEL_MODE_LEN]; /* Channel modes */ - char topic[CHANNEL_TOPIC_LEN]; /* Topic of the channel */ + array topic; /* Topic of the channel */ char key[CLIENT_PASS_LEN]; /* Channel key ("password", mode "k" ) */ long maxusers; /* Maximum number of members (mode "l") */ } CHANNEL;