From c6edb37f28d55cb985724d2ec124a4a53577f451 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 24 Jan 2014 10:09:57 +0100 Subject: [PATCH] vfs_time_audit: Make durable functions static Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- source3/modules/vfs_time_audit.c | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/source3/modules/vfs_time_audit.c b/source3/modules/vfs_time_audit.c index fd9eb522099..a70c8cad949 100644 --- a/source3/modules/vfs_time_audit.c +++ b/source3/modules/vfs_time_audit.c @@ -2275,10 +2275,10 @@ static int smb_time_audit_set_offline(struct vfs_handle_struct *handle, return result; } -NTSTATUS smb_time_audit_durable_cookie(struct vfs_handle_struct *handle, - struct files_struct *fsp, - TALLOC_CTX *mem_ctx, - DATA_BLOB *cookie) +static NTSTATUS smb_time_audit_durable_cookie(struct vfs_handle_struct *handle, + struct files_struct *fsp, + TALLOC_CTX *mem_ctx, + DATA_BLOB *cookie) { NTSTATUS result; struct timespec ts1,ts2; @@ -2296,11 +2296,11 @@ NTSTATUS smb_time_audit_durable_cookie(struct vfs_handle_struct *handle, return result; } -NTSTATUS smb_time_audit_durable_disconnect(struct vfs_handle_struct *handle, - struct files_struct *fsp, - const DATA_BLOB old_cookie, - TALLOC_CTX *mem_ctx, - DATA_BLOB *new_cookie) +static NTSTATUS smb_time_audit_durable_disconnect(struct vfs_handle_struct *handle, + struct files_struct *fsp, + const DATA_BLOB old_cookie, + TALLOC_CTX *mem_ctx, + DATA_BLOB *new_cookie) { NTSTATUS result; struct timespec ts1,ts2; @@ -2319,13 +2319,13 @@ NTSTATUS smb_time_audit_durable_disconnect(struct vfs_handle_struct *handle, return result; } -NTSTATUS smb_time_audit_durable_reconnect(struct vfs_handle_struct *handle, - struct smb_request *smb1req, - struct smbXsrv_open *op, - const DATA_BLOB old_cookie, - TALLOC_CTX *mem_ctx, - struct files_struct **fsp, - DATA_BLOB *new_cookie) +static NTSTATUS smb_time_audit_durable_reconnect(struct vfs_handle_struct *handle, + struct smb_request *smb1req, + struct smbXsrv_open *op, + const DATA_BLOB old_cookie, + TALLOC_CTX *mem_ctx, + struct files_struct **fsp, + DATA_BLOB *new_cookie) { NTSTATUS result; struct timespec ts1,ts2; -- 2.11.4.GIT