You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sa...@hyperreal.org on 2000/01/01 02:53:08 UTC

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

sascha      99/12/31 17:53:08

  Modified:    src/lib/apr/network_io/unix sockets.c
  Log:
  Fix typo, the parameter name is `sock' not `socket'
  
  Revision  Changes    Path
  1.27      +1 -1      apache-2.0/src/lib/apr/network_io/unix/sockets.c
  
  Index: sockets.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/network_io/unix/sockets.c,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -u -r1.26 -r1.27
  --- sockets.c	1999/12/03 15:18:34	1.26
  +++ sockets.c	2000/01/01 01:53:07	1.27
  @@ -261,7 +261,7 @@
    */
   ap_status_t ap_get_socketdata(void **data, char *key, struct socket_t *sock)
   {
  -    if (socket != NULL) {
  +    if (sock != NULL) {
           return ap_get_userdata(data, key, sock->cntxt);
       }
       else {