search for: tval_tv_usec

Displaying 2 results from an estimated 2 matches for "tval_tv_usec".

Did you mean: tval_tv_usecs
1999 May 18
0
A typo bug in Samba 2.0.4 source code (here's the fix!)
.../* and microseconds */ }; # endif /* _STRUCT_TIMEVAL */ .. Here's the fix: diff -u system.c.org system.c --- system.c.org Tue May 18 12:49:52 1999 +++ system.c Tue May 18 12:50:20 1999 @@ -166,8 +166,8 @@ /* * Fake it with select... */ - tval.tv_secs = 0; - tval_tv_usecs = usecs/1000; + tval.tv_sec = 0; + tval.tv_usec = usecs/1000; select(0,NULL,NULL,NULL,&tval); return 0; #endif /* HAVE_USLEEP */ In HPUX 10.20's compilation there are lots of warnings: cpp: "values.h", line 27: warning 2001: Redefinition of macro MAXINT but these are j...
1999 May 18
0
Probleme compiling Samba 2.0.4
...have an error with the /source/lib/system.c file. It is concerning the timeval struct (which I concluded must be a system struct) at lines 169 and 170. It looks like a copy and paste error but the code is too big and I haven't looked it all... My solution would be to change tval.tv_secs = 0; tval_tv_usec = usecs/1000; To the following : tval.tv_sec = 0; tval.tv_usec = usecs/1000; Is this right??? I have another problem, I try to configure our network so NT, Win95-98 and Win3.1 users can map Unix server drives to their desktops without having to enter their passwords as many times as they access...