diff options
author | Volker Lendecke <vl@samba.org> | 2008-07-13 12:07:40 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-08-12 11:28:29 +0200 |
commit | 340ab6a256802a22c11b7f707748397249075b65 (patch) | |
tree | 20d297829eb3e27c6c80ad537712627ae845a4ef /source3/include | |
parent | 8d4bd2d960ebf11bc85891210c6f72a371e08417 (diff) | |
download | samba-340ab6a256802a22c11b7f707748397249075b65.tar.gz samba-340ab6a256802a22c11b7f707748397249075b65.tar.bz2 samba-340ab6a256802a22c11b7f707748397249075b65.zip |
idmap rewrite
(This used to be commit 30a180f2fce8cf6a3e5548f6bba453272ba70b33)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/idmap.h | 8 |
1 files changed, 2 insertions, 6 deletions
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. */ |