diff options
author | David Disseldorp <ddiss@samba.org> | 2013-04-03 14:01:00 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2013-04-03 16:14:32 +0200 |
commit | ed76e65172ba1a21ef21b3c0267ed5ef1aa8aa9b (patch) | |
tree | bf47f8c9c5b6031dbb224aec842841c1b14b82b1 /source4/ntvfs | |
parent | 79038397aa8786c92401312973185c7b14e8fa66 (diff) | |
download | samba-ed76e65172ba1a21ef21b3c0267ed5ef1aa8aa9b.tar.gz samba-ed76e65172ba1a21ef21b3c0267ed5ef1aa8aa9b.tar.bz2 samba-ed76e65172ba1a21ef21b3c0267ed5ef1aa8aa9b.zip |
ntvfs: support setfileinfo with FULL_EA_INFORMATION
Use existing unmarshall and set helper functions. This allows the
smb2.setinfo.setinfo test to run against the ntvfs file server.
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Autobuild-User(master): Stefan Metzmacher <metze@samba.org>
Autobuild-Date(master): Wed Apr 3 16:14:33 CEST 2013 on sn-devel-104
Diffstat (limited to 'source4/ntvfs')
-rw-r--r-- | source4/ntvfs/posix/pvfs_setfileinfo.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source4/ntvfs/posix/pvfs_setfileinfo.c b/source4/ntvfs/posix/pvfs_setfileinfo.c index 3c9b18d91c..7fd4e35d4f 100644 --- a/source4/ntvfs/posix/pvfs_setfileinfo.c +++ b/source4/ntvfs/posix/pvfs_setfileinfo.c @@ -367,7 +367,7 @@ NTSTATUS pvfs_setfileinfo(struct ntvfs_module_context *ntvfs, break; case RAW_SFILEINFO_EA_SET: - return pvfs_setfileinfo_ea_set(pvfs, h->name, h->fd, + return pvfs_setfileinfo_ea_set(pvfs, h->name, h->fd, info->ea_set.in.num_eas, info->ea_set.in.eas); @@ -420,6 +420,11 @@ NTSTATUS pvfs_setfileinfo(struct ntvfs_module_context *ntvfs, h->position = info->position_information.in.position; break; + case RAW_SFILEINFO_FULL_EA_INFORMATION: + return pvfs_setfileinfo_ea_set(pvfs, h->name, h->fd, + info->full_ea_information.in.eas.num_eas, + info->full_ea_information.in.eas.eas); + case RAW_SFILEINFO_MODE_INFORMATION: /* this one is a puzzle */ if (info->mode_information.in.mode != 0 && |