diff options
author | Jeremy Allison <jra@samba.org> | 2005-03-02 21:43:54 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:55:51 -0500 |
commit | a4deaac09f93530e8b8e6b7310c9d8c68eff259c (patch) | |
tree | 0437c34686d1358dde1c64dcac2fa69877f81703 /source3/smbd | |
parent | f0a683ec344b97b6bf29e1aa022378297813eb26 (diff) | |
download | samba-a4deaac09f93530e8b8e6b7310c9d8c68eff259c.tar.gz samba-a4deaac09f93530e8b8e6b7310c9d8c68eff259c.tar.bz2 samba-a4deaac09f93530e8b8e6b7310c9d8c68eff259c.zip |
r5630: This may be a mistake ... needs more cthon investigation.
Jeremy.
(This used to be commit 0322c5884666bf62a37de069a1cd0ae888ac4285)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/open.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c index fc4f97ad16..a552dc5b61 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -494,12 +494,15 @@ existing desired access (0x%x).\n", fname, (unsigned int)desired_access, (unsign return False; } +#if 0 + /* Bluarc test may need this ... needs further investigation. */ if (deny_mode == DENY_ALL || old_deny_mode == DENY_ALL) { unix_ERR_class = ERRDOS; unix_ERR_code = ERRbadshare; unix_ERR_ntstatus = NT_STATUS_SHARING_VIOLATION; return False; } +#endif /* * If desired_access doesn't contain READ_DATA,WRITE_DATA,APPEND_DATA or EXECUTE |