]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - modules/core/m_error.c
Update NEWS.
[irc/rqf/shadowircd.git] / modules / core / m_error.c
index 5a5bd67a6ae4e6077dc79ebf949ce6ef4c70fd45..df19a14b70bed5a75be9d98f47d8860bfe66d6b8 100644 (file)
@@ -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;