Author: Isomer <isomer@coders.net>
[ircu2.10.12-pk.git] / ircd / ircd_reply.c
index 0a25fe54e6e1e2d7022cf95185f0af133e14c3c0..fccf40d0193e744c50e1f8062f6742a336d63349 100644 (file)
@@ -52,8 +52,8 @@ int protocol_violation(struct Client* cptr, const char* pattern, ...)
   vd.vd_format = pattern;
   va_start(vd.vd_args, pattern);
 
-  sendcmdto_flag_butone(&me, CMD_DESYNCH, NULL, FLAGS_DEBUG,
-                       ":Protocol Violation from %s: %v", cli_name(cptr), &vd);
+  sendwallto_group_butone(&me, CMD_DESYNCH, NULL,
+                       "Protocol Violation from %s: %v", cli_name(cptr), &vd);
 
   va_end(vd.vd_args);
   return 0;
@@ -61,16 +61,6 @@ int protocol_violation(struct Client* cptr, const char* pattern, ...)
 
 int need_more_params(struct Client* cptr, const char* cmd)
 {
-#if 0
-  /*
-   * XXX - bug
-   * shouldn't try to do more than one thing at a time,
-   * call protocol_violation explicitly where it's needed and
-   * context is available.
-   */
-  if (!MyUser(cptr))
-    protocol_violation(cptr, "Not enough parameters for %s",cmd);
-#endif
   send_reply(cptr, ERR_NEEDMOREPARAMS, cmd);
   return 0;
 }