--------------------- PatchSet 1077 Date: 2004/10/03 10:32:58 Author: serassio Branch: nt Tag: (none) Log: Fixed wrong prototype of emulated gettimeofday() Members: lib/win32lib.c:1.2.18.6->1.2.18.7 Index: squid3/lib/win32lib.c =================================================================== RCS file: /cvsroot/squid-sf//squid3/lib/win32lib.c,v retrieving revision 1.2.18.6 retrieving revision 1.2.18.7 diff -u -r1.2.18.6 -r1.2.18.7 --- squid3/lib/win32lib.c 27 Jun 2004 17:28:26 -0000 1.2.18.6 +++ squid3/lib/win32lib.c 3 Oct 2004 10:32:58 -0000 1.2.18.7 @@ -1,5 +1,5 @@ /* - * $Id: win32lib.c,v 1.2.18.6 2004/06/27 17:28:26 serassio Exp $ + * $Id: win32lib.c,v 1.2.18.7 2004/10/03 10:32:58 serassio Exp $ * * * * * * * * * Legal stuff * * * * * * * * @@ -164,10 +164,10 @@ else return 0; } -int gettimeofday( struct timeval * pcur_time, struct timezone * tz) +int gettimeofday( struct timeval * pcur_time, void * tzp) { - struct _timeb current; + struct timezone * tz = (struct timezone *)tzp; _ftime(¤t);