From: pk910 Date: Tue, 28 Jun 2011 13:46:39 +0000 (+0200) Subject: fixed doubled && X-Git-Tag: WGN5~57 X-Git-Url: http://git.pk910.de/?p=ircu2.10.12-pk.git;a=commitdiff_plain;h=8defd2e1a50ba2803325976e7a143b540e3cf724 fixed doubled && --- 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);