aboutsummaryrefslogtreecommitdiffstats
path: root/common/rfb
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2015-11-09 15:28:50 +0100
committerPierre Ossman <ossman@cendio.se>2015-11-09 15:28:50 +0100
commit7835815c1c32cdccfa74fb10ad25de4956bdc939 (patch)
treeb4e505ca1e26dc360d3bcbcc70e3f1e78eb920d8 /common/rfb
parent9c181baf3c648e95a150c76eebd7ae5b5633c578 (diff)
downloadtigervnc-7835815c1c32cdccfa74fb10ad25de4956bdc939.tar.gz
tigervnc-7835815c1c32cdccfa74fb10ad25de4956bdc939.zip
Remove old Windows CE code
Diffstat (limited to 'common/rfb')
-rw-r--r--common/rfb/Logger_file.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/common/rfb/Logger_file.cxx b/common/rfb/Logger_file.cxx
index 8a109e4a..ebe15d52 100644
--- a/common/rfb/Logger_file.cxx
+++ b/common/rfb/Logger_file.cxx
@@ -61,13 +61,11 @@ void Logger_File::write(int level, const char *logname, const char *message)
if (!m_file) return;
}
-#ifndef _WIN32_WCE
time_t current = time(0);
if (current != m_lastLogTime) {
m_lastLogTime = current;
fprintf(m_file, "\n%s", ctime(&m_lastLogTime));
}
-#endif
fprintf(m_file," %s:", logname);
int column = strlen(logname) + 2;