diff options
author | Jeremy Allison <jra@samba.org> | 2006-04-17 22:32:38 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:16:24 -0500 |
commit | 5445694eb9c7a5e64e7e58feb78c87bc627402b5 (patch) | |
tree | 6e77669860e973b65f2f65ae80d39dcce6a570ce /source3/smbd | |
parent | a3fdf8ac21a8cbb95c336177a4d32c8c5dec09b7 (diff) | |
download | samba-5445694eb9c7a5e64e7e58feb78c87bc627402b5.tar.gz samba-5445694eb9c7a5e64e7e58feb78c87bc627402b5.tar.bz2 samba-5445694eb9c7a5e64e7e58feb78c87bc627402b5.zip |
r15112: Move strict locking default to auto. Fix up the error
return for one of the Samba4 torture tests.
Jeremy.
(This used to be commit 9db6617756ff155eb7549c3c622a9920189e577d)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 0a3fc27be6..0524078310 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -5221,7 +5221,7 @@ int reply_lockingX(connection_struct *conn, char *inbuf, char *outbuf, /* we don't support these - and CANCEL_LOCK makes w2k and XP reboot so I don't really want to be compatible! (tridge) */ - return ERROR_DOS(ERRDOS, ERRnoatomiclocks); + return ERROR_FORCE_DOS(ERRDOS, ERRnoatomiclocks); } if (locktype & LOCKING_ANDX_CANCEL_LOCK) { |