Send ssld error netwide if it was a remote connect and a handshake.

This commit is contained in:
Jilles Tjoelker 2008-06-29 22:02:32 +02:00
parent 9cb932632f
commit cd0ba90750
1 changed files with 1 additions and 1 deletions

View File

@ -360,7 +360,7 @@ 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, L_ALL, "ssld error for %s: %s", client_p->name, reason);
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);
exit_client(client_p, client_p, &me, reason);
}