You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by Sebastian Bergmann <li...@sebastian-bergmann.de> on 2002/11/20 14:35:07 UTC

[PATCH] Fix Win32 build

  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/

RE: [PATCH] Fix Win32 build

Posted by Bill Stoddard <bi...@wstoddard.com>.
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/
>