]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3:includes: move union unid_t to vfs.h
authorStefan Metzmacher <metze@samba.org>
Tue, 5 Jun 2012 08:10:17 +0000 (10:10 +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 57795bd568526c48f126fe12cc08d809f35f6c83..959a7c682553056fa3587f24bc3dc8c0360ff46e 100644 (file)
 #define OPENX_FILE_CREATE_IF_NOT_EXIST 0x10
 #define OPENX_FILE_FAIL_IF_NOT_EXIST 0
 
-typedef union unid_t {
-       uid_t uid;
-       gid_t gid;
-} unid_t;
-
 /* pipe string names */
 
 #ifndef MAXSUBAUTHS
index 92f6ecd29d0a596af1d4e600614ded64309a88a9..09d38f37062c0f4b549e0526d06cf1fd4c57d873 100644 (file)
@@ -162,6 +162,11 @@ struct blocking_lock_record;
 struct smb_filename;
 struct dfs_GetDFSReferral;
 
+typedef union unid_t {
+       uid_t uid;
+       gid_t gid;
+} unid_t;
+
 #define VFS_FIND(__fn__) while (handle->fns->__fn__##_fn==NULL) { \
                                handle = handle->next; \
                         }