Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / m_squit.c
index 8611b21da67ff5aa403be095363d18e4a6ff34d4..c0282fec811f9d2252b0c24ea5c0f416929cb95f 100644 (file)
@@ -77,8 +77,6 @@ int ms_squit(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
     acptr = FindNServer(server);
 
   if (!acptr) {
-    protocol_violation(sptr, "Issued SQUIT for unknown server %s (ignored)",
-                      server);
     Debug((DEBUG_NOTICE, "Ignoring SQUIT to an unknown server"));
     return 0;
   }
@@ -97,9 +95,6 @@ int ms_squit(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
    */
   if ( timestamp != 0 && timestamp != cli_serv(acptr)->timestamp)
   {
-    protocol_violation(sptr, "Issued SQUIT for %C with wrong timestamp %Tu "
-                       "(%Tu) (ignored)", acptr, timestamp,
-                       cli_serv(acptr)->timestamp);
     Debug((DEBUG_NOTICE, "Ignoring SQUIT with the wrong timestamp"));
     return 0;
   }