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);
  
  
  

Reply via email to