Return-Path: Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 20974 invoked by uid 500); 20 Nov 2002 15:31:14 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 20958 invoked from network); 20 Nov 2002 15:31:14 -0000 From: "Bill Stoddard" To: "APR Development List" Subject: RE: [PATCH] Fix Win32 build Date: Wed, 20 Nov 2002 10:31:50 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Committed. Thanks for the patch. Bill > > The following patch fugbixes two typos: > > Index: network_io/win32/sendrecv.c > =================================================================== > RCS file: /home/cvspublic/apr/network_io/win32/sendrecv.c,v > retrieving revision 1.60 > diff -u -u -r1.60 sendrecv.c > --- network_io/win32/sendrecv.c 20 Nov 2002 03:50:21 -0000 1.60 > +++ network_io/win32/sendrecv.c 20 Nov 2002 13:32:59 -0000 > @@ -474,7 +474,7 @@ > APR_DECLARE(apr_status_t) apr_send(apr_socket_t *sock, const char *buf, > apr_size_t *len) > { > - return apr_socket_send(sock. buf, len); > + return apr_socket_send(sock, buf, len); > } > > /* Deprecated */ > Index: network_io/win32/sockets.c > =================================================================== > RCS file: /home/cvspublic/apr/network_io/win32/sockets.c,v > retrieving revision 1.92 > diff -u -u -r1.92 sockets.c > --- network_io/win32/sockets.c 20 Nov 2002 03:50:21 -0000 1.92 > +++ network_io/win32/sockets.c 20 Nov 2002 13:33:00 -0000 > @@ -523,7 +523,7 @@ > /* Deprecated */ > APR_DECLARE(apr_status_t) apr_listen(apr_socket_t *sock, apr_int32_t > backlog) > { > - return apr_socket_listen(sock. backlog); > + return apr_socket_listen(sock, backlog); > } > > /* Deprecated */ > > -- > Sebastian Bergmann > http://sebastian-bergmann.de/ http://phpOpenTracker.de/ > > Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/ >