diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-08-20 09:49:30 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-08-20 21:57:46 +1000 |
commit | 3ef0e2246b4016b5f8a38f7476bc226c1875bfab (patch) | |
tree | 75d1261c46a397e05000e64b9b59ac28b6b0b759 /source4/ntvfs | |
parent | 0769d67682de756557c02256b8c854dc5fca9c23 (diff) | |
download | samba-3ef0e2246b4016b5f8a38f7476bc226c1875bfab.tar.gz samba-3ef0e2246b4016b5f8a38f7476bc226c1875bfab.tar.bz2 samba-3ef0e2246b4016b5f8a38f7476bc226c1875bfab.zip |
s4-ntvfs: Add TODO on ea_size
This is almost certainly un-important.
Andrew Bartlett
Diffstat (limited to 'source4/ntvfs')
-rw-r--r-- | source4/ntvfs/posix/pvfs_fileinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/posix/pvfs_fileinfo.c b/source4/ntvfs/posix/pvfs_fileinfo.c index b1fd55aceb..d2e2aeea26 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; |