diff options
author | dscho <dscho> | 2001-09-26 21:20:27 +0000 |
---|---|---|
committer | dscho <dscho> | 2001-09-26 21:20:27 +0000 |
commit | 5c3eae92371309d94a5edd4e35caa71a2e481ab9 (patch) | |
tree | fa4389c90f5c4fcade0554568a458c087f5c13e8 /httpd.c | |
parent | d6082b694129df97fcbe027d30655d2f0225fdca (diff) | |
download | libtdevnc-5c3eae92371309d94a5edd4e35caa71a2e481ab9.tar.gz libtdevnc-5c3eae92371309d94a5edd4e35caa71a2e481ab9.zip |
API corrections
Diffstat (limited to 'httpd.c')
-rw-r--r-- | httpd.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -66,12 +66,10 @@ static char buf[BUF_SIZE]; void httpInitSockets(rfbScreenInfoPtr rfbScreen) { - static Bool done = FALSE; - - if (done) + if (rfbScreen->httpInitDone) return; - done = TRUE; + rfbScreen->httpInitDone = TRUE; if (!rfbScreen->httpDir) return; |