From 88fc1aeb6857676e757e0052ffc73e75f4b18112 Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Wed, 30 Jul 2008 14:50:12 +0200 Subject: [PATCH] Put back netwide snotes for ssld errors from remote connects. --- src/sslproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sslproc.c b/src/sslproc.c index e9851406..5c2b4663 100644 --- a/src/sslproc.c +++ b/src/sslproc.c @@ -353,7 +353,7 @@ ssl_process_dead_fd(ssl_ctl_t *ctl, ssl_ctl_buf_t *ctl_buf) 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); ilog(L_SERVER, "ssld error for %s: %s", log_client_name(client_p, SHOW_IP), reason); } exit_client(client_p, client_p, &me, reason);