From 824455aba608c5dda400b2bf59eaf88ff0e8d225 Mon Sep 17 00:00:00 2001 From: JD Horelick Date: Tue, 23 Feb 2010 02:53:19 -0500 Subject: [PATCH] Forgot to constify --- src/channel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/channel.c b/src/channel.c index fc739fb..0c29f15 100644 --- a/src/channel.c +++ b/src/channel.c @@ -1467,7 +1467,7 @@ check_channel_name_loc(struct Client *source_p, const char *name) return 1; } -void user_join(struct Client * client_p, struct Client * source_p, char * channels, char * keys) +void user_join(struct Client * client_p, struct Client * source_p, const char * channels, const char * keys) { static char jbuf[BUFSIZE]; struct Channel *chptr = NULL;