From: Andrew Bartlett Date: Sun, 19 Aug 2012 23:49:30 +0000 (+1000) Subject: s4-ntvfs: Add TODO on ea_size X-Git-Tag: samba-4.0.0beta7~131 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ef0e2246b4016b5f8a38f7476bc226c1875bfab;p=thirdparty%2Fsamba.git s4-ntvfs: Add TODO on ea_size This is almost certainly un-important. Andrew Bartlett --- diff --git a/source4/ntvfs/posix/pvfs_fileinfo.c b/source4/ntvfs/posix/pvfs_fileinfo.c index b1fd55acebc..d2e2aeea265 100644 --- a/source4/ntvfs/posix/pvfs_fileinfo.c +++ b/source4/ntvfs/posix/pvfs_fileinfo.c @@ -81,7 +81,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 = 4; + name->dos.ea_size = 4; /* TODO: Fill this in without hitting the stream bad in pvfs_doseas_load() */ if (pvfs->ntvfs->ctx->protocol >= PROTOCOL_SMB2_02) { /* SMB2 represents a null EA with zero bytes */ name->dos.ea_size = 0;