From: William A. Rowe Jr Date: Tue, 18 Dec 2001 15:20:57 +0000 (+0000) Subject: Fix a very irritating nit - this was the 1.3.20 code - there was no X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13e42505772c2155226766a0545b84bf937c17cb;p=thirdparty%2Fapache%2Fhttpd.git Fix a very irritating nit - this was the 1.3.20 code - there was no call for changing the formatting when the patch to add another platform in the #if case was modified. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@92515 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/main/http_main.c b/src/main/http_main.c index 6dd94de16fe..b129642ae0f 100644 --- a/src/main/http_main.c +++ b/src/main/http_main.c @@ -1861,9 +1861,9 @@ static void lingering_close(request_rec *r) } while ((select_rv > 0) && #if defined(WIN32) || defined(NETWARE) - (recv(lsd, dummybuf, sizeof dummybuf, 0) > 0)); + (recv(lsd, dummybuf, sizeof(dummybuf), 0) > 0)); #else - (read(lsd, dummybuf, sizeof dummybuf) > 0)); + (read(lsd, dummybuf, sizeof(dummybuf)) > 0)); #endif /* Should now have seen final ack. Safe to finally kill socket */