You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bj...@apache.org on 2001/01/03 02:44:26 UTC

cvs commit: apr/network_io/os2 sockets.c

bjh         01/01/02 17:44:26

  Modified:    network_io/os2 sockets.c
  Log:
  OS/2: Fix field name for local address.
  
  Revision  Changes    Path
  1.37      +1 -1      apr/network_io/os2/sockets.c
  
  Index: sockets.c
  ===================================================================
  RCS file: /home/cvs/apr/network_io/os2/sockets.c,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- sockets.c	2000/12/04 16:09:26	1.36
  +++ sockets.c	2001/01/03 01:44:26	1.37
  @@ -191,7 +191,7 @@
                sa->salen) == -1)
           return APR_OS2_STATUS(sock_errno());
       else {
  -        sock->local_sa = sa;
  +        sock->local_addr = sa;
           return APR_SUCCESS;
       }
   }