diff options
author | Volker Lendecke <vl@samba.org> | 2008-06-07 09:04:03 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-06-07 09:04:03 +0200 |
commit | d1e0c7f0c1a62030e08fd3ae00ec8ed07c79aa72 (patch) | |
tree | 58f8476a0a07cf4aa03027db7b074e3484593afa /source3/include | |
parent | 0e7d1aae2f4767d3744aeb1eab15ed793e71db74 (diff) | |
download | samba-d1e0c7f0c1a62030e08fd3ae00ec8ed07c79aa72.tar.gz samba-d1e0c7f0c1a62030e08fd3ae00ec8ed07c79aa72.tar.bz2 samba-d1e0c7f0c1a62030e08fd3ae00ec8ed07c79aa72.zip |
Add STREAMINFO op to vfs_full_audit
Fix Coverity ID 552 and 553
(This used to be commit c46e10d2605b22d31675976e62e5ae61d73c8a0a)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/vfs_macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/vfs_macros.h b/source3/include/vfs_macros.h index bb3aeba77b..db789572a4 100644 --- a/source3/include/vfs_macros.h +++ b/source3/include/vfs_macros.h @@ -334,7 +334,7 @@ #define SMB_VFS_NEXT_NOTIFY_WATCH(conn, ctx, e, callback, private_data, handle_p) ((conn)->vfs_next.ops.notify_watch((conn)->vfs_next.handles.notify_watch, (ctx), (e), (callback), (private_data), (handle_p))) #define SMB_VFS_NEXT_CHFLAGS(handle, path, flags) ((handle)->vfs_next.ops.chflags((handle)->vfs_next.handles.chflags, (path), (flags))) #define SMB_VFS_NEXT_FILE_ID_CREATE(handle, dev, inode) ((handle)->vfs_next.ops.file_id_create((handle)->vfs_next.handles.file_id_create, (dev), (inode))) -#define SMB_VFS_NEXT_STREAMINFO(handle, fsp, fname, mem_ctx, num_streams, streams) ((handle)->vfs.ops.streaminfo((handle)->vfs.handles.streaminfo, (fsp), (fname), (mem_ctx), (num_streams), (streams))) +#define SMB_VFS_NEXT_STREAMINFO(handle, fsp, fname, mem_ctx, num_streams, streams) ((handle)->vfs_next.ops.streaminfo((handle)->vfs_next.handles.streaminfo, (fsp), (fname), (mem_ctx), (num_streams), (streams))) /* NT ACL operations. */ #define SMB_VFS_NEXT_FGET_NT_ACL(handle, fsp, security_info, ppdesc) ((handle)->vfs_next.ops.fget_nt_acl((handle)->vfs_next.handles.fget_nt_acl, (fsp), (security_info), (ppdesc))) |