]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - src/sslproc.c
Do not check floodcount if user is messaging self.
[irc/rqf/shadowircd.git] / src / sslproc.c
index e08a1b8999c0fdd735b343c5dd3f3fb460451009..e6ae5aab81db52993b6f11d2938a42b6b97d32a1 100644 (file)
@@ -360,7 +360,10 @@ ssl_process_dead_fd(ssl_ctl_t *ctl, ssl_ctl_buf_t *ctl_buf)
        if(client_p == NULL)
                return;
        if(IsAnyServer(client_p))
+       {
                sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) && !IsServer(client_p) ? L_NETWIDE : L_ALL, "ssld error for %s: %s", client_p->name, reason);
+               ilog(L_SERVER, "ssld error for %s: %s", log_client_name(client_p, SHOW_IP), reason);
+       }
        exit_client(client_p, client_p, &me, reason);
 }