From 22cfc8eca8e6ab652ae9784a81ec0cf843e3dd1d Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 5 Jun 2012 10:37:34 +0200 Subject: s3:include: move struct smb_file_time to vfs.h metze --- source3/include/smb.h | 8 -------- source3/include/vfs.h | 8 ++++++++ 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'source3') diff --git a/source3/include/smb.h b/source3/include/smb.h index 9e3d518011..deb0790e25 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -1032,14 +1032,6 @@ struct smb_extended_info { char samba_version_string[SAMBA_EXTENDED_INFO_VERSION_STRING_LENGTH]; }; -/* time info */ -struct smb_file_time { - struct timespec mtime; - struct timespec atime; - struct timespec ctime; - struct timespec create_time; -}; - /* * unix_convert_flags */ diff --git a/source3/include/vfs.h b/source3/include/vfs.h index 39e524fa41..f60a2e7716 100644 --- a/source3/include/vfs.h +++ b/source3/include/vfs.h @@ -350,6 +350,14 @@ struct stream_struct { char *name; }; +/* time info */ +struct smb_file_time { + struct timespec mtime; + struct timespec atime; + struct timespec ctime; + struct timespec create_time; +}; + #define VFS_FIND(__fn__) while (handle->fns->__fn__##_fn==NULL) { \ handle = handle->next; \ } -- cgit