From: Art Cancro Date: Mon, 6 Mar 2006 04:48:45 +0000 (+0000) Subject: RWHO command no longer trips the idle timer X-Git-Tag: v7.86~4145 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=f751a49140173d72b9b63a1b89cb7c052a583d7a;p=citadel.git RWHO command no longer trips the idle timer --- diff --git a/citadel/citserver.c b/citadel/citserver.c index a4f488fc4..f31942313 100644 --- a/citadel/citserver.c +++ b/citadel/citserver.c @@ -911,12 +911,13 @@ void do_command_loop(void) { /* * Let other clients see the last command we executed, and - * update the idle time, but not NOOP, QNOP, PEXP, or GEXP. + * update the idle time, but not NOOP, QNOP, PEXP, GEXP, or RWHO. */ if ( (strncasecmp(cmdbuf, "NOOP", 4)) && (strncasecmp(cmdbuf, "QNOP", 4)) && (strncasecmp(cmdbuf, "PEXP", 4)) - && (strncasecmp(cmdbuf, "GEXP", 4)) ) { + && (strncasecmp(cmdbuf, "GEXP", 4)) + && (strncasecmp(cmdbuf, "RWHO", 4)) ) { strcpy(CC->lastcmdname, " "); safestrncpy(CC->lastcmdname, cmdbuf, sizeof(CC->lastcmdname)); time(&CC->lastidle);