summaryrefslogtreecommitdiff
path: root/source3/passdb/lookup_sid.h
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-03-23 17:30:34 +1100
committerMichael Adam <obnox@samba.org>2012-05-02 12:45:30 +0200
commitac97f151ed18351bf648b00e358cfb127f261826 (patch)
tree1d2e645635dab5bedc60ea0df4fff3e50a5ecffb /source3/passdb/lookup_sid.h
parent2d5df933f421602276c3dfc04852911d91f631fc (diff)
downloadsamba-ac97f151ed18351bf648b00e358cfb127f261826.tar.gz
samba-ac97f151ed18351bf648b00e358cfb127f261826.tar.bz2
samba-ac97f151ed18351bf648b00e358cfb127f261826.zip
s3-passdb: Use struct unixid in sids_to_unix_ids
This avoids the union in the struct wbcUnixId and moves us to using only struct unixid internally. Andrew Bartlett Signed-off-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/passdb/lookup_sid.h')
-rw-r--r--source3/passdb/lookup_sid.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/lookup_sid.h b/source3/passdb/lookup_sid.h
index 65444c39a6..068e499664 100644
--- a/source3/passdb/lookup_sid.h
+++ b/source3/passdb/lookup_sid.h
@@ -87,7 +87,7 @@ bool sid_to_uid(const struct dom_sid *psid, uid_t *puid);
bool sid_to_gid(const struct dom_sid *psid, gid_t *pgid);
struct wbcUnixId;
bool sids_to_unix_ids(const struct dom_sid *sids, uint32_t num_sids,
- struct wbcUnixId *ids);
+ struct unixid *ids);
NTSTATUS get_primary_group_sid(TALLOC_CTX *mem_ctx,
const char *username,
struct passwd **_pwd,