From 677e21a4506968991b94c9876f1ffba4b1d7f339 Mon Sep 17 00:00:00 2001 From: JD Horelick Date: Tue, 23 Feb 2010 02:53:44 -0500 Subject: [PATCH] Constify the header too :D --- include/channel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/channel.h b/include/channel.h index 346f7ad..c9c3ee1 100644 --- a/include/channel.h +++ b/include/channel.h @@ -272,7 +272,7 @@ extern int valid_extban(const char *banstr, struct Client *client_p, struct Chan const char * get_extban_string(void); extern struct Channel * check_forward(struct Client *source_p, struct Channel *chptr, char *key); -extern void user_join(struct Client * client_p, struct Client * source_p, char * channels, char * keys); +extern void user_join(struct Client * client_p, struct Client * source_p, const char * channels, const char * keys); extern void do_join_0(struct Client *client_p, struct Client *source_p); extern int check_channel_name_loc(struct Client *source_p, const char *name);