diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-10-18 14:13:45 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-10-18 15:06:11 +1100 |
commit | 2d4ad4f5048269afcfeece446780855dd3cd5649 (patch) | |
tree | 527c5628516a95e92146871ea1abf4930927202b /source4/ntvfs/posix | |
parent | edd0ea5225c61b889e48034cc9e10f22006716ce (diff) | |
download | samba-2d4ad4f5048269afcfeece446780855dd3cd5649.tar.gz samba-2d4ad4f5048269afcfeece446780855dd3cd5649.tar.bz2 samba-2d4ad4f5048269afcfeece446780855dd3cd5649.zip |
s4-pvfs: the STREAM_INFORMATION calls don't need any access flags
Diffstat (limited to 'source4/ntvfs/posix')
-rw-r--r-- | source4/ntvfs/posix/pvfs_qfileinfo.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/ntvfs/posix/pvfs_qfileinfo.c b/source4/ntvfs/posix/pvfs_qfileinfo.c index bfc9a8441c..713925d094 100644 --- a/source4/ntvfs/posix/pvfs_qfileinfo.c +++ b/source4/ntvfs/posix/pvfs_qfileinfo.c @@ -45,6 +45,11 @@ static uint32_t pvfs_fileinfo_access(union smb_fileinfo *info) needed = 0; break; + case RAW_FILEINFO_STREAM_INFO: + case RAW_FILEINFO_STREAM_INFORMATION: + needed = 0; + break; + case RAW_FILEINFO_SEC_DESC: needed = 0; if (info->query_secdesc.in.secinfo_flags & (SECINFO_OWNER|SECINFO_GROUP)) { |