From ac97f151ed18351bf648b00e358cfb127f261826 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 23 Mar 2012 17:30:34 +1100 Subject: 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 --- source3/passdb/lookup_sid.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/passdb/lookup_sid.h') 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, -- cgit