bnicholes    01/11/02 15:28:19

  Modified:    time/unix time.c
  Log:
  Adjusted to deal with microseconds
  
  Revision  Changes    Path
  1.56      +1 -1      apr/time/unix/time.c
  
  Index: time.c
  ===================================================================
  RCS file: /home/cvs/apr/time/unix/time.c,v
  retrieving revision 1.55
  retrieving revision 1.56
  diff -u -r1.55 -r1.56
  --- time.c    2001/10/29 23:04:08     1.55
  +++ time.c    2001/11/02 23:28:19     1.56
  @@ -266,7 +266,7 @@
   #elif defined(BEOS)
       snooze(t);
   #elif defined(NETWARE)
  -    delay(t);
  +    delay(t/1000);
   #else
       struct timeval tv;
       tv.tv_usec = t % APR_USEC_PER_SEC;
  
  
  

Reply via email to