From 340ab6a256802a22c11b7f707748397249075b65 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 13 Jul 2008 12:07:40 +0200 Subject: idmap rewrite (This used to be commit 30a180f2fce8cf6a3e5548f6bba453272ba70b33) --- source3/include/idmap.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'source3/include') diff --git a/source3/include/idmap.h b/source3/include/idmap.h index e059ab2337..95c3e4c0c2 100644 --- a/source3/include/idmap.h +++ b/source3/include/idmap.h @@ -36,19 +36,15 @@ struct idmap_domain { const char *name; - bool default_domain; - bool readonly; - void *private_data; struct idmap_methods *methods; - bool initialized; - const char *params; + void *private_data; }; /* Filled out by IDMAP backends */ struct idmap_methods { /* Called when backend is first loaded */ - NTSTATUS (*init)(struct idmap_domain *dom); + NTSTATUS (*init)(struct idmap_domain *dom, const char *params); /* Map an array of uids/gids to SIDs. The caller specifies the uid/gid and type. Gets back the SID. */ -- cgit