You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bj...@locus.apache.org on 2000/04/04 14:29:39 UTC

cvs commit: apache-2.0/src/lib/apr/network_io/os2 sockets.c

bjh         00/04/04 05:29:39

  Modified:    src/lib/apr/network_io/os2 sockets.c
  Log:
  socket_cleanup() is local & not namespace protected, should be static.
  
  Revision  Changes    Path
  1.15      +1 -1      apache-2.0/src/lib/apr/network_io/os2/sockets.c
  
  Index: sockets.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/network_io/os2/sockets.c,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- sockets.c	2000/04/03 19:45:08	1.14
  +++ sockets.c	2000/04/04 12:29:39	1.15
  @@ -66,7 +66,7 @@
   #include <netdb.h>
   #include "os2calls.h"
   
  -ap_status_t socket_cleanup(void *sock)
  +static ap_status_t socket_cleanup(void *sock)
   {
       ap_socket_t *thesocket = sock;
       if (soclose(thesocket->socketdes) == 0) {