summaryrefslogtreecommitdiff
path: root/source3/include/vfs.h
diff options
context:
space:
mode:
Diffstat (limited to 'source3/include/vfs.h')
-rw-r--r--source3/include/vfs.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/include/vfs.h b/source3/include/vfs.h
index 92f6ecd29d..09d38f3706 100644
--- a/source3/include/vfs.h
+++ b/source3/include/vfs.h
@@ -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; \
}