diff options
Diffstat (limited to 'source3')
-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 |