]> jfr.im git - irc/rqf/shadowircd.git/commitdiff
Forgot to constify
authorJD Horelick <redacted>
Tue, 23 Feb 2010 07:53:19 +0000 (02:53 -0500)
committerJD Horelick <redacted>
Tue, 23 Feb 2010 07:53:19 +0000 (02:53 -0500)
src/channel.c

index fc739fbe449cb6ea2e5e02b4f8884b53ac846ce7..0c29f15d0b16bfa43de7acc11bf9b5acc2bcd964 100644 (file)
@@ -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;