]> jfr.im git - solanum.git/commitdiff
extensions/chm_sslonly: Use some 4xx numeric for the join failure.
authorJilles Tjoelker <redacted>
Thu, 12 Jun 2014 21:30:37 +0000 (23:30 +0200)
committerJilles Tjoelker <redacted>
Sat, 19 Jul 2014 18:14:14 +0000 (20:14 +0200)
extensions/chm_sslonly.c

index 7ae8e8b4e1245bf86d23f5924d0c56cc21bb9d32..a1bfaf75164dd8a9fe1b285eb3cf608a71299330 100644 (file)
@@ -45,7 +45,8 @@ h_can_join(hook_data_channel *data)
        struct Channel *chptr = data->chptr;
 
        if((chptr->mode.mode & mymode) && !IsSSLClient(source_p)) {
-               sendto_one_notice(source_p, ":Only users using SSL can join this channel!");
+               /* XXX This is equal to ERR_THROTTLE */
+               sendto_one_numeric(source_p, 480, "%s :Cannot join channel (+S) - SSL/TLS required", chptr->chname);
                data->approved = ERR_CUSTOM;
        }
 }