- The big forward port. I probably broke lots of stuff, so please look over any
[ircu2.10.12-pk.git] / ircd / m_wallchops.c
index 9ff5a093b833421ddff266fe20b7f0270d9d4828..f05769bdb8a99e06fc474ec8b72821dc75604ff1 100644 (file)
@@ -105,7 +105,7 @@ int m_wallchops(struct Client* cptr, struct Client* sptr, int parc, char* parv[]
   assert(0 != cptr);
   assert(cptr == sptr);
 
-  cli_flags(sptr) &= ~FLAGS_TS8;
+  ClrFlag(sptr, FLAG_TS8);
 
   if (parc < 2 || EmptyString(parv[1]))
     return send_reply(sptr, ERR_NORECIPIENT, "WALLCHOPS");
@@ -120,7 +120,7 @@ int m_wallchops(struct Client* cptr, struct Client* sptr, int parc, char* parv[]
         return 0;
       sendcmdto_channel_butone(sptr, CMD_WALLCHOPS, chptr, cptr,
                               SKIP_DEAF | SKIP_BURST | SKIP_NONOPS,
-                              "%H :%s", chptr, parv[parc - 1]);
+                              "%H :%s", chptr, parv[parc - 1]);
     }
     else
       send_reply(sptr, ERR_CANNOTSENDTOCHAN, parv[1]);