diff options
author | Jeremy Allison <jra@samba.org> | 2004-12-11 00:30:28 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:53:36 -0500 |
commit | 934566332835eed5a3b768e07642c569eca37001 (patch) | |
tree | a072cc62f2fa68fd2da4fcd7db3f358c7184369b /source3/smbd | |
parent | 3c45a093c435a106e08746aa3f3db824192340f1 (diff) | |
download | samba-934566332835eed5a3b768e07642c569eca37001.tar.gz samba-934566332835eed5a3b768e07642c569eca37001.tar.bz2 samba-934566332835eed5a3b768e07642c569eca37001.zip |
r4143: Make strict locking an enum. Auto means use oplock optimization.
Jeremy.
(This used to be commit 0dd4adeae2042d0ea64398a78b3f48eb0150c133)
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 507e4c1c37..825f76fcd5 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -4578,7 +4578,7 @@ int reply_lockingX(connection_struct *conn, char *inbuf,char *outbuf,int length, /* 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_NT(NT_STATUS_NOT_SUPPORTED); + return ERROR_NT(NT_STATUS_UNSUCCESSFUL); } if (locktype & LOCKING_ANDX_CANCEL_LOCK) { |