You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@hyperreal.org on 1999/05/27 15:07:46 UTC

cvs commit: apache-apr/apr/test client.c

rbb         99/05/27 06:07:46

  Modified:    apr/test client.c
  Log:
  Change localhost to 127.0.0.1, for those platforms that don't define localhost
  on install.
  
  Revision  Changes    Path
  1.8       +1 -1      apache-apr/apr/test/client.c
  
  Index: client.c
  ===================================================================
  RCS file: /home/cvs/apache-apr/apr/test/client.c,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- client.c	1999/05/26 15:45:56	1.7
  +++ client.c	1999/05/27 13:07:45	1.8
  @@ -107,7 +107,7 @@
   
       fprintf(stdout, "\tClient:  Connecting to socket.......");
   do {
  -    stat = ap_connect(sock, "localhost");
  +    stat = ap_connect(sock, "127.0.0.1");
   } while (stat == APR_ECONNREFUSED);
       if (stat != APR_SUCCESS) {
           ap_close_socket(sock);