]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3:include: move struct stream_struct to vfs.h
authorStefan Metzmacher <metze@samba.org>
Tue, 5 Jun 2012 08:17:57 +0000 (10:17 +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 8b9aa1c2d0a000626c5d5ecdba76241d2b051aaa..8da000c41a3a6a770bab11ab5706073432bc84ce 100644 (file)
@@ -167,16 +167,6 @@ typedef struct {
        bool is_wild;
 } name_compare_entry;
 
-/*
- * Info about an alternate data stream
- */
-
-struct stream_struct {
-       off_t size;
-       off_t alloc_size;
-       char *name;
-};
-
 /* Include VFS stuff */
 
 #include "smb_acls.h"
index 069e56ff0388eeed692152aca19863f7fdbf6b7d..bfed01bc649165a829abd351566a732d830d1ad9 100644 (file)
@@ -249,6 +249,16 @@ typedef struct files_struct {
 
 } files_struct;
 
+/*
+ * Info about an alternate data stream
+ */
+
+struct stream_struct {
+       off_t size;
+       off_t alloc_size;
+       char *name;
+};
+
 #define VFS_FIND(__fn__) while (handle->fns->__fn__##_fn==NULL) { \
                                handle = handle->next; \
                         }