diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-11-10 12:40:33 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:42 -0500 |
commit | e7810eeab787bb93b36c95f8783d0b8f4c7cf7c0 (patch) | |
tree | 71eee16274943f50b6a9747c48ce2b76da51f5a3 /source4/ntvfs/posix/pvfs_read.c | |
parent | 70fbbdfdfd996b4d1b453a531154c3ad381048df (diff) | |
download | samba-e7810eeab787bb93b36c95f8783d0b8f4c7cf7c0.tar.gz samba-e7810eeab787bb93b36c95f8783d0b8f4c7cf7c0.tar.xz samba-e7810eeab787bb93b36c95f8783d0b8f4c7cf7c0.zip |
r3658: use handle->fd == -1 as the primary indicator of a directory. This
fixes a directory creation problem from WinXP
(This used to be commit 4b3afc6c395b430e7e56d8ebe0ddf85c556a5df5)
Diffstat (limited to 'source4/ntvfs/posix/pvfs_read.c')
-rw-r--r-- | source4/ntvfs/posix/pvfs_read.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/posix/pvfs_read.c b/source4/ntvfs/posix/pvfs_read.c index 5598ccfb08..0f7d3b4b0c 100644 --- a/source4/ntvfs/posix/pvfs_read.c +++ b/source4/ntvfs/posix/pvfs_read.c @@ -46,7 +46,7 @@ NTSTATUS pvfs_read(struct ntvfs_module_context *ntvfs, return NT_STATUS_INVALID_HANDLE; } - if (f->handle->name->dos.attrib & FILE_ATTRIBUTE_DIRECTORY) { + if (f->handle->fd == -1) { return NT_STATUS_FILE_IS_A_DIRECTORY; } |