You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@hyperreal.org on 1999/10/28 20:11:01 UTC

cvs commit: apache-1.3/src/modules/standard mod_usertrack.c

stoddard    99/10/28 11:10:59

  Modified:    src/modules/standard mod_usertrack.c
  Log:
  Fix netware bug in original patch
  
  Revision  Changes    Path
  1.42      +1 -4      apache-1.3/src/modules/standard/mod_usertrack.c
  
  Index: mod_usertrack.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/modules/standard/mod_usertrack.c,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- mod_usertrack.c	1999/10/27 09:26:54	1.41
  +++ mod_usertrack.c	1999/10/28 18:10:55	1.42
  @@ -135,13 +135,10 @@
   #if defined(NO_GETTIMEOFDAY) && !defined(NO_TIMES)
       clock_t mpe_times;
       struct tms mpe_tms;
  -#elif !defined(WIN32) || defined(NETWARE)
  +#elif !defined(WIN32) && !defined(NETWARE)
       struct timeval tv;
  -#ifdef NETWARE
       time_t tz = 0;
  -#else
       struct timezone tz = {0, 0};
  -#endif
   #endif
       /* 1024 == hardcoded constant */
       char cookiebuf[1024];