From 7be3fa3266788de371f7ba1c1bc0d701b0080a26 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Sun, 29 Aug 2010 16:55:55 +0000 Subject: [PATCH] * substracting independend pointers with no conjunction gives mad numbers. thanks samjam for pointing that out. --- webcit/tcp_sockets.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webcit/tcp_sockets.c b/webcit/tcp_sockets.c index 80eb54f0c..6f32d66ef 100644 --- a/webcit/tcp_sockets.c +++ b/webcit/tcp_sockets.c @@ -191,9 +191,9 @@ int StrBuf_ServGetln(StrBuf *buf) #ifdef SERV_TRACE else { - long pos=0; + long pos = 0; if (WCC->ReadPos != NULL) - pos = WCC->ReadPos - ChrPtr(buf); + pos = WCC->ReadPos - ChrPtr(WCC->ReadBuf); lprintf(9, "%3d<<<[%ld]%s\n", WC->serv_sock, pos, ChrPtr(buf)); } #endif -- 2.30.2