X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/5b0a527927c6c5f4decdc33cc06c24f4bc17f61f..1c646b89143ba1a86ab8e4b86efd38dc150c22ec:/modules/core/m_error.c diff --git a/modules/core/m_error.c b/modules/core/m_error.c index 5a5bd67..df19a14 100644 --- a/modules/core/m_error.c +++ b/modules/core/m_error.c @@ -85,7 +85,6 @@ is_safe_error(const char *message) * although this is called internally from other functions * --msa * - * parv[0] = sender prefix * parv[*] = parameters */ int @@ -96,8 +95,11 @@ m_error(struct Client *client_p, struct Client *source_p, int parc, const char * para = (parc > 1 && *parv[1] != '\0') ? parv[1] : "<>"; - ilog(L_SERVER, "Received ERROR message from %s: %s", - log_client_name(source_p, SHOW_IP), para); + if (IsAnyServer(client_p)) + { + ilog(L_SERVER, "Received ERROR message from %s: %s", + log_client_name(source_p, SHOW_IP), para); + } if(is_safe_error(para)) hideit = 0;