rbb         99/12/30 11:45:41

  Modified:    src/lib/apr/test testproc.c
  Log:
  Fix a minor bug in testproc.  We always call sleep, and it is defined to be
  Sleep on Windows.
  
  Revision  Changes    Path
  1.8       +1 -1      apache-2.0/src/lib/apr/test/testproc.c
  
  Index: testproc.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/test/testproc.c,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- testproc.c        1999/12/17 12:32:14     1.7
  +++ testproc.c        1999/12/30 19:45:38     1.8
  @@ -168,7 +168,7 @@
       }
       else fprintf(stderr, "Read failed.\n");
   
  -    Sleep(1000);
  +    sleep(1000);
       fprintf(stdout, "Removing directory.......");
       if (ap_remove_dir("proctest", context) != APR_SUCCESS) {
           fprintf(stderr, "Could not remove directory.\n");
  
  
  

Reply via email to