X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=ircd%2Fm_privmsg.c;h=b9928dc192b146d85bf6d52991eb6701cbebe101;hb=refs%2Fheads%2Fupstream;hp=1d257e31c13321e7e3158388d2d134dfb1971f03;hpb=5ba09703da9f8f21f3278dc0222cd6fe077cfe31;p=ircu2.10.12-pk.git diff --git a/ircd/m_privmsg.c b/ircd/m_privmsg.c index 1d257e3..b9928dc 100644 --- a/ircd/m_privmsg.c +++ b/ircd/m_privmsg.c @@ -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 +/* #include -- Now using assert in ircd_log.h */ #include /* @@ -145,7 +146,7 @@ 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[]) { @@ -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)); - ClrFlag(cptr, FLAG_TS8); + ClrFlag(sptr, FLAG_TS8); if (feature_bool(FEAT_IDLE_FROM_MSG)) cli_user(sptr)->last = CurrentTime;