diff options
Diffstat (limited to 'include/channel.h')
-rw-r--r-- | include/channel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/channel.h b/include/channel.h index a922715..564533e 100644 --- a/include/channel.h +++ b/include/channel.h @@ -114,11 +114,11 @@ struct Ban extern dlink_list global_channel_list; -extern int check_channel_name(const char *, int); +extern int check_channel_name(const char *, const int); extern int can_send(struct Channel *, struct Client *, struct Membership *); extern int is_banned(const struct Channel *, const struct Client *); extern int can_join(struct Client *, struct Channel *, const char *); -extern int has_member_flags(struct Membership *, unsigned int); +extern int has_member_flags(const struct Membership *, const unsigned int); extern void remove_ban(struct Ban *, dlink_list *); extern void channel_init(void); |