1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-16 00:23:52 +03:00

fixed a typo in the select() emulation code

This commit is contained in:
Samba Release Account
-
parent 3e2239aa59
commit 3f37b2db98

View File

@@ -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++;
}