summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-12-16 12:29:47 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:07:28 -0500
commit145702b75604be85f71d9e0e5b8fe048da439958 (patch)
tree54b838300af44e15d09078496fadcad92fbacfa2
parent7bb5587097d7af1c42dab683c68afa06b35b7872 (diff)
downloadsamba-145702b75604be85f71d9e0e5b8fe048da439958.tar.gz
samba-145702b75604be85f71d9e0e5b8fe048da439958.tar.bz2
samba-145702b75604be85f71d9e0e5b8fe048da439958.zip
r4230: now that we set the FLAGS2_EXTENDED_ATTRIBUTES flag, we should mark
empty EAs as being of size 4, not size 0 (This used to be commit 76bd6476785e4145437768caa702c01a7801590e)
-rw-r--r--source4/ntvfs/posix/pvfs_fileinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/posix/pvfs_fileinfo.c b/source4/ntvfs/posix/pvfs_fileinfo.c
index fa45444159..aafecf0950 100644
--- a/source4/ntvfs/posix/pvfs_fileinfo.c
+++ b/source4/ntvfs/posix/pvfs_fileinfo.c
@@ -95,7 +95,7 @@ NTSTATUS pvfs_fill_dos_info(struct pvfs_state *pvfs, struct pvfs_filename *name,
name->dos.attrib = dos_mode_from_stat(pvfs, &name->st);
name->dos.alloc_size = pvfs_round_alloc_size(pvfs, name->st.st_size);
name->dos.nlink = name->st.st_nlink;
- name->dos.ea_size = 0;
+ name->dos.ea_size = 4;
name->dos.file_id = (((uint64_t)name->st.st_dev)<<32) | name->st.st_ino;
name->dos.flags = 0;