From: Andrew Tridgell Date: Thu, 13 Mar 2003 04:34:31 +0000 (+0000) Subject: win2000 can take much longer than the specified time to respond to a X-Git-Tag: samba-4.0.0alpha6~801^2~11793^2~1758 X-Git-Url: http://git.samba.org/?p=samba.git;a=commitdiff_plain;h=3b104f6e2dc56c5edcf0278e7e43d4993e7db368 win2000 can take much longer than the specified time to respond to a lock - so to make the torture tests valid I give it a grace time of 10 seconds instead of 2 (This used to be commit c9c9e9eb26ec3042395637d14a6661d04a629ccc) --- diff --git a/source3/libsmb/clifile.c b/source3/libsmb/clifile.c index f61787abde2..8e84963c094 100644 --- a/source3/libsmb/clifile.c +++ b/source3/libsmb/clifile.c @@ -633,7 +633,7 @@ BOOL cli_lock(struct cli_state *cli, int fnum, cli_send_smb(cli); if (timeout != 0) { - cli->timeout = (timeout == -1) ? 0x7FFFFFFF : (timeout + 2*1000); + cli->timeout = (timeout == -1) ? 0x7FFFFFFF : (timeout + 10*1000); } if (!cli_receive_smb(cli)) {