Author: Isomer <perry@coders.net>
[ircu2.10.12-pk.git] / ircd / m_error.c
index 7af17f44f18d80ce8538cf89143d016b078e23da..f7ad566a465e16f166f99dd3b463fc258430c674 100644 (file)
@@ -115,55 +115,6 @@ int ms_error(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
   para = (parc > 1 && *parv[parc - 1] != '\0') ? parv[parc - 1] : "<>";
 
   Debug((DEBUG_ERROR, "Received ERROR message from %s: %s", sptr->name, para));
-  /*
-   * Ignore error messages generated by normal user clients
-   * (because ill-behaving user clients would flood opers
-   * screen otherwise). Pass ERROR's from other sources to
-   * the local operator...
-   */
-  if (IsUser(cptr))
-    return 0;
-  if (IsUnknown(cptr))
-    return exit_client_msg(cptr, cptr, &me, "Register first");
-
-  if (cptr == sptr)
-    sendto_opmask_butone(0, SNO_OLDSNO, "ERROR :from %C -- %s", cptr, para);
-  else
-    sendto_opmask_butone(0, SNO_OLDSNO, "ERROR :from %C via %C -- %s", sptr,
-                        cptr, para);
-
-  if (sptr->serv)
-  {
-    MyFree(sptr->serv->last_error_msg);
-    DupString(sptr->serv->last_error_msg, para);
-  }
-
-  return 0;
-}
-
-/*
- * mr_error - registration message handler
- *
- * parv[0] = sender prefix
- * parv[parc-1] = text
- */
-int mr_error(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
-{
-  const char *para;
-
-  para = (parc > 1 && *parv[parc - 1] != '\0') ? parv[parc - 1] : "<>";
-
-  Debug((DEBUG_ERROR, "Received ERROR message from %s: %s", sptr->name, para));
-  /*
-   * Ignore error messages generated by normal user clients
-   * (because ill-behaving user clients would flood opers
-   * screen otherwise). Pass ERROR's from other sources to
-   * the local operator...
-   */
-  if (IsUser(cptr))
-    return 0;
-  if (IsUnknown(cptr))
-    return exit_client_msg(cptr, cptr, &me, "Register first");
 
   if (cptr == sptr)
     sendto_opmask_butone(0, SNO_OLDSNO, "ERROR :from %C -- %s", cptr, para);