added gnutls backend and moved backend code into new files
[ircu2.10.12-pk.git] / ircd / m_privmsg.c
index aee3c857ca9e39c75bc05c2f2c41fdcd8016e584..b9928dc192b146d85bf6d52991eb6701cbebe101 100644 (file)
@@ -85,6 +85,7 @@
 #include "ircd.h"
 #include "ircd_chattr.h"
 #include "ircd_features.h"
+#include "ircd_log.h"
 #include "ircd_relay.h"
 #include "ircd_reply.h"
 #include "ircd_string.h"
@@ -93,7 +94,7 @@
 #include "numeric.h"
 #include "send.h"
 
-#include <assert.h>
+/* #include <assert.h> -- Now using assert in ircd_log.h */
 #include <string.h>
 
 /*
@@ -111,7 +112,7 @@ int m_privmsg(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
   assert(cptr == sptr);
   assert(0 != cli_user(sptr));
 
-  cli_flags(sptr) &= ~FLAGS_TS8;
+  ClrFlag(sptr, FLAG_TS8);
 
   if (feature_bool(FEAT_IDLE_FROM_MSG))
     cli_user(sptr)->last = CurrentTime;
@@ -145,14 +146,14 @@ int m_privmsg(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
 }
 
 /*
- * ms_privmsg - server message handler template
+ * ms_privmsg - server message handler
  */
 int ms_privmsg(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
 {
   char* name;
   char* server;
 
-  cli_flags(sptr) &= ~FLAGS_TS8;
+  ClrFlag(sptr, FLAG_TS8);
 
   if (parc < 3) {
     /*
@@ -201,7 +202,7 @@ int mo_privmsg(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
   assert(cptr == sptr);
   assert(0 != cli_user(sptr));
 
-  cli_flags(sptr) &= ~FLAGS_TS8;
+  ClrFlag(sptr, FLAG_TS8);
 
   if (feature_bool(FEAT_IDLE_FROM_MSG))
     cli_user(sptr)->last = CurrentTime;