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/08/10 19:49:32 UTC

cvs commit: apache-apr/apr/time/unix time.c

rbb         99/08/10 10:49:27

  Modified:    apr/time/unix time.c
  Log:
  Fix a stupid mistake in the unix apr time code.
  
  Revision  Changes    Path
  1.10      +3 -2      apache-apr/apr/time/unix/time.c
  
  Index: time.c
  ===================================================================
  RCS file: /home/cvs/apache-apr/apr/time/unix/time.c,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- time.c	1999/08/09 15:52:31	1.9
  +++ time.c	1999/08/10 17:49:24	1.10
  @@ -216,6 +216,7 @@
       us /= 1000;
       s = a->currtime->tv_sec - b->currtime->tv_sec;
       s *= 1000;
  -    return s + us;
  -}
  +    *rv = s + us;
  +    return APR_SUCCESS;
  +}