summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-01-26 12:16:39 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-01-26 12:16:39 +0000
commit4a9f7d2365a9e5dbce0492b2f194968f22b27d85 (patch)
tree14a5825956fd68e2068dc2061872cf54c888bae9 /include
parentff062202847914e3cb76c0b2de72a92c4e05653d (diff)
- Clean up stupid pointer magic passed to the channel mode handlers.
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2938 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'include')
-rw-r--r--include/channel_mode.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/channel_mode.h b/include/channel_mode.h
index a751dc6..fda0bdb 100644
--- a/include/channel_mode.h
+++ b/include/channel_mode.h
@@ -116,9 +116,10 @@ struct mode_letter
};
extern const struct mode_letter chan_modes[];
+
extern int add_id(struct Client *, struct Channel *, char *, int);
extern void set_channel_mode(struct Client *, struct Client *, struct Channel *,
- struct Membership *, int, char **, char *);
+ struct Membership *, int, char **);
extern void clear_ban_cache(struct Channel *);
extern void clear_ban_cache_client(struct Client *);
extern void init_chcap_usage_counts(void);