X-Git-Url: http://git.pk910.de/?p=ircu2.10.12-pk.git;a=blobdiff_plain;f=ircd%2Fm_privmsg.c;h=a47656e6c1d2f908ca42f58a2f50ec2813a6f422;hp=e5edee281d41a4ab32a99821d3d9073cca8309e4;hb=8defd2e1a50ba2803325976e7a143b540e3cf724;hpb=6b37fbc287f702e217764647c702a245a467f916 diff --git a/ircd/m_privmsg.c b/ircd/m_privmsg.c index e5edee2..a47656e 100644 --- a/ircd/m_privmsg.c +++ b/ircd/m_privmsg.c @@ -217,7 +217,7 @@ int mo_privmsg(struct Client* cptr, struct Client* sptr, int parc, char* parv[]) if (parc < 3 || EmptyString(parv[parc - 1])) return send_reply(sptr, ERR_NOTEXTTOSEND); - if (feature_bool(FEAT_IDLE_FROM_MSG) && && (!cli_user(sptr)->lastmsg || strcmp(cli_user(sptr)->lastmsg, parv[parc - 1]))) + if (feature_bool(FEAT_IDLE_FROM_MSG) && (!cli_user(sptr)->lastmsg || strcmp(cli_user(sptr)->lastmsg, parv[parc - 1]))) cli_user(sptr)->last = CurrentTime; count = unique_name_vector(parv[1], ',', vector, MAXTARGETS);