From: Samba Release Account Date: Sat, 4 May 1996 10:28:35 +0000 (+0000) Subject: fixed a typo in the select() emulation code X-Git-Tag: samba-4.0.0alpha6~801^2~23564 X-Git-Url: http://git.samba.org/samba.git/?p=bbaumbach%2Fsamba-autobuild%2F.git;a=commitdiff_plain;h=ea4abcd71981a75b74b31ec80530872d65190a5e fixed a typo in the select() emulation code (This used to be commit 3f37b2db98cfc490a8ec99b8fdb1eaee00faea4c) --- diff --git a/source3/lib/system.c b/source3/lib/system.c index 938746e9c9d..ac64b37a6fe 100644 --- a/source3/lib/system.c +++ b/source3/lib/system.c @@ -79,7 +79,7 @@ int sys_select(fd_set *fds,struct timeval *tval) return(found); } - if (tval && tval.tv_sec < counter) return(0); + if (tval && tval->tv_sec < counter) return(0); sleep(1); counter++; }