From 8499d0c60859328c927f1cb0fcd7b307fddff3c5 Mon Sep 17 00:00:00 2001 From: Constantin Kaplinsky Date: Thu, 21 Aug 2008 05:51:29 +0000 Subject: [PATCH] [Cleanup] Fixed a compilation warning by removing a very doubtful optimization. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2696 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- common/rfb/VNCServerST.cxx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/common/rfb/VNCServerST.cxx b/common/rfb/VNCServerST.cxx index 06921e71..0577d056 100644 --- a/common/rfb/VNCServerST.cxx +++ b/common/rfb/VNCServerST.cxx @@ -179,13 +179,8 @@ int VNCServerST::checkTimeouts() } int timeLeft; - time_t now; + time_t now = time(0); - // Optimization: Only call time() if using any maxTime. - if (rfb::Server::maxDisconnectionTime || rfb::Server::maxConnectionTime || rfb::Server::maxIdleTime) { - now = time(0); - } - // Check MaxDisconnectionTime if (rfb::Server::maxDisconnectionTime && clients.empty()) { if (now < lastDisconnectTime) { -- 2.39.5