diff options
author | David Disseldorp <ddiss@samba.org> | 2012-09-27 11:50:22 +0200 |
---|---|---|
committer | David Disseldorp <ddiss@samba.org> | 2012-09-28 17:44:55 +0200 |
commit | e8e91fbbab16c7bcaa9665839d86c7d169e89fff (patch) | |
tree | 52fb7854b44b42b6d4e1962d8ec8886b46e5d44b /source3/modules/vfs_full_audit.c | |
parent | b9ca792af2091474f826827190987681c1333ef5 (diff) | |
download | samba-e8e91fbbab16c7bcaa9665839d86c7d169e89fff.tar.gz |
vfs: add missing pwrite ops to full_audit
The op enum is used by audit_opname() as an index into the vfs_op_names
array, so any decrepencies cause bogus audit log entries.
Signed-off-by: Jim McDonough <jmcd@samba.org>
Diffstat (limited to 'source3/modules/vfs_full_audit.c')
-rw-r--r-- | source3/modules/vfs_full_audit.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/modules/vfs_full_audit.c b/source3/modules/vfs_full_audit.c index 1a481abfd51..5c5f91cfd01 100644 --- a/source3/modules/vfs_full_audit.c +++ b/source3/modules/vfs_full_audit.c @@ -236,6 +236,8 @@ static struct { { SMB_VFS_OP_PREAD_RECV, "pread_recv" }, { SMB_VFS_OP_WRITE, "write" }, { SMB_VFS_OP_PWRITE, "pwrite" }, + { SMB_VFS_OP_PWRITE_SEND, "pwrite_send" }, + { SMB_VFS_OP_PWRITE_RECV, "pwrite_recv" }, { SMB_VFS_OP_LSEEK, "lseek" }, { SMB_VFS_OP_SENDFILE, "sendfile" }, { SMB_VFS_OP_RECVFILE, "recvfile" }, |