]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3:include: move struct smb_file_time to vfs.h
authorStefan Metzmacher <metze@samba.org>
Tue, 5 Jun 2012 08:37:34 +0000 (10:37 +0200)
committerStefan Metzmacher <metze@samba.org>
Wed, 6 Jun 2012 08:18:38 +0000 (10:18 +0200)
metze

source3/include/smb.h
source3/include/vfs.h

index 9e3d51801149504df7c7a7876ca773e263375e55..deb0790e25a176306bfd084da7bfc7a5358eacd8 100644 (file)
@@ -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
  */
index 39e524fa413ca97bc61a203b39a60c80c4fcaab0..f60a2e771675314a8aec1359f7021ddc71ce6dfc 100644 (file)
@@ -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; \
                         }