summaryrefslogtreecommitdiff
path: root/source4/ntvfs/posix/pvfs_write.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-11-10 12:40:33 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:05:42 -0500
commite7810eeab787bb93b36c95f8783d0b8f4c7cf7c0 (patch)
tree71eee16274943f50b6a9747c48ce2b76da51f5a3 /source4/ntvfs/posix/pvfs_write.c
parent70fbbdfdfd996b4d1b453a531154c3ad381048df (diff)
downloadsamba-e7810eeab787bb93b36c95f8783d0b8f4c7cf7c0.tar.gz
samba-e7810eeab787bb93b36c95f8783d0b8f4c7cf7c0.tar.bz2
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_write.c')
-rw-r--r--source4/ntvfs/posix/pvfs_write.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/posix/pvfs_write.c b/source4/ntvfs/posix/pvfs_write.c
index 6ebd9b70cf..989e8d7b1b 100644
--- a/source4/ntvfs/posix/pvfs_write.c
+++ b/source4/ntvfs/posix/pvfs_write.c
@@ -44,7 +44,7 @@ NTSTATUS pvfs_write(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;
}