X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=textclient%2Fcommands.c;h=cecbb4d1fa5d073e3263848785db50d243afee46;hp=c8d920a3dbac0740395a92fbfa43d3bd1c98b4df;hb=defbf0ec0505989b8e6b714ffd8de9792b465398;hpb=a9be394c2df9fcfa94b3b9c3e398c81ac4f20206 diff --git a/textclient/commands.c b/textclient/commands.c index c8d920a3d..cecbb4d1f 100644 --- a/textclient/commands.c +++ b/textclient/commands.c @@ -627,10 +627,8 @@ static void really_do_keepalive(void) { } } - // If half keepalives are enabled, send a QNOP to the server (if the - // server supports it) and then do nothing. - if ((keepalives_enabled == KA_HALF) - && (ipc_for_signal_handlers->ServInfo.supports_qnop > 0)) { + // If half keepalives are enabled, send a QNOP to the server, then do nothing. + if (keepalives_enabled == KA_HALF) { CtdlIPC_chat_send(ipc_for_signal_handlers, "QNOP"); } }