Author: Bleep <twhelvey1@home.com>
[ircu2.10.12-pk.git] / ircd / ircd_reply.c
index c8df3c4cacd25c826e1c88fb9eee4b8d9ace95bd..3a222a3f8cf2e7fcd4e9b25c8192c5a7339fb445 100644 (file)
@@ -59,8 +59,16 @@ 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);
+    protocol_violation(cptr, "Not enough parameters for %s",cmd);
+#endif
   send_reply(cptr, ERR_NEEDMOREPARAMS, cmd);
   return 0;
 }