From 8dfdb6a2b5e1d9872f3d9edc05cd8863c73c1e31 Mon Sep 17 00:00:00 2001 From: michael Date: Thu, 9 May 2013 16:01:01 +0000 Subject: - Only show remote client exit notices if the server sent an EOB git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@1990 82007160-df01-0410-b94d-b575c5fd34c7 --- src/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.c b/src/client.c index fed9a53..015ba86 100644 --- a/src/client.c +++ b/src/client.c @@ -918,7 +918,7 @@ exit_client(struct Client *source_p, struct Client *from, const char *comment) */ close_connection(source_p); } - else if (IsClient(source_p)) + else if (IsClient(source_p) && HasFlag(source_p->servptr, FLAGS_EOB)) sendto_realops_flags(UMODE_FARCONNECT, L_ALL, SEND_NOTICE, "Client exiting at %s: %s (%s@%s) [%s]", source_p->servptr->name, source_p->name, -- cgit