diff options
author | Volker Lendecke <vl@samba.org> | 2014-01-24 10:09:57 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-01-24 13:42:38 -0800 |
commit | c6edb37f28d55cb985724d2ec124a4a53577f451 (patch) | |
tree | dadb6113c3d95c4940a870085633a61683b5c03e | |
parent | c437eaa62521d3fd44e3958cf0c4c1b24dc9cd76 (diff) | |
download | samba-c6edb37f28d55cb985724d2ec124a4a53577f451.tar.gz samba-c6edb37f28d55cb985724d2ec124a4a53577f451.tar.xz samba-c6edb37f28d55cb985724d2ec124a4a53577f451.zip |
vfs_time_audit: Make durable functions static
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
-rw-r--r-- | source3/modules/vfs_time_audit.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/source3/modules/vfs_time_audit.c b/source3/modules/vfs_time_audit.c index fd9eb52209..a70c8cad94 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; |