You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2002/10/18 16:03:43 UTC

cvs commit: apr/network_io/win32 sockets.c

trawick     2002/10/18 07:03:42

  Modified:    network_io/win32 sockets.c
  Log:
  fix compile break
  Submitted by:	Randall Stewart <ra...@stewart.chicago.il.us>
  Reviewed by:	Jeff Trawick
  
  Revision  Changes    Path
  1.87      +1 -1      apr/network_io/win32/sockets.c
  
  Index: sockets.c
  ===================================================================
  RCS file: /home/cvs/apr/network_io/win32/sockets.c,v
  retrieving revision 1.86
  retrieving revision 1.87
  diff -u -r1.86 -r1.87
  --- sockets.c	18 Oct 2002 12:04:00 -0000	1.86
  +++ sockets.c	18 Oct 2002 14:03:42 -0000	1.87
  @@ -182,7 +182,7 @@
   APR_DECLARE(apr_status_t) apr_socket_create(apr_socket_t **new, int family,
                                               int type, apr_pool_t *cont)
   {
  -    return apr_socket_create_ex(new, family, type, protocol, cont);
  +    return apr_socket_create_ex(new, family, type, 0, cont);
   }
   
   APR_DECLARE(apr_status_t) apr_shutdown(apr_socket_t *thesocket,