diff options
author | Volker Lendecke <vl@samba.org> | 2009-01-05 13:08:07 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-01-05 13:09:32 +0100 |
commit | 6d4fd789f65ea770a33abfcba42665cf6a0efb10 (patch) | |
tree | 51ab56333dc80e4ce181e2a2087271368248cbc0 | |
parent | 34d0cb4f1707d8a16ca95c6db7ead79bae3e280c (diff) | |
download | samba-6d4fd789f65ea770a33abfcba42665cf6a0efb10.tar.gz samba-6d4fd789f65ea770a33abfcba42665cf6a0efb10.tar.bz2 samba-6d4fd789f65ea770a33abfcba42665cf6a0efb10.zip |
Add create_file to vfs_op_names
-rw-r--r-- | source3/include/vfs_macros.h | 2 | ||||
-rw-r--r-- | source3/modules/vfs_full_audit.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/vfs_macros.h b/source3/include/vfs_macros.h index b008d86b3c..c6ccd4912a 100644 --- a/source3/include/vfs_macros.h +++ b/source3/include/vfs_macros.h @@ -340,7 +340,7 @@ #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_next.ops.streaminfo((handle)->vfs_next.handles.streaminfo, (fsp), (fname), (mem_ctx), (num_streams), (streams))) -#define SMB_VFS_NEXT_GET_REAL_FILENAME(conn, path, name, mem_ctx, found_name) ((conn)->vfs_next.ops.get_real_filename((conn)->vfs_next.handles.get_real_filename, (path), (name), (mem_ctx), (found_name))) +#define SMB_VFS_NEXT_GET_REAL_FILENAME(handle, path, name, mem_ctx, found_name) ((handle)->vfs_next.ops.get_real_filename((handle)->vfs_next.handles.get_real_filename, (path), (name), (mem_ctx), (found_name))) /* 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))) diff --git a/source3/modules/vfs_full_audit.c b/source3/modules/vfs_full_audit.c index 3615c3978b..e4bda09130 100644 --- a/source3/modules/vfs_full_audit.c +++ b/source3/modules/vfs_full_audit.c @@ -583,6 +583,7 @@ static struct { { SMB_VFS_OP_RMDIR, "rmdir" }, { SMB_VFS_OP_CLOSEDIR, "closedir" }, { SMB_VFS_OP_OPEN, "open" }, + { SMB_VFS_OP_CREATE_FILE, "create_file" }, { SMB_VFS_OP_CLOSE, "close" }, { SMB_VFS_OP_READ, "read" }, { SMB_VFS_OP_PREAD, "pread" }, |