From 8e5ce1e2d53f36fd35eb8efad7da680dcf0b1ce1 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sat, 17 Nov 2012 02:30:07 +0100 Subject: s3:winbindd: factor winbindd_sids_to_xids into external and internal part - external part takes winbindd request/reponse structs (with sid strings) - internal part takes sid lists The new internal part implements functions wb_sids2xids_* that are moved into the new module wb_sids2xids.c. The purpose of this change is to use wb_sids2xids in winbindd_sid_to_uid and winbindd_sid_to_gid instead of the currently used wb_sid2uid and wb_sid2gid. We should just have one code path into id mapping and not several that behave differently. Signed-off-by: Michael Adam Reviewed-by: Stefan Metzmacher --- source3/wscript_build | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/wscript_build') diff --git a/source3/wscript_build b/source3/wscript_build index b9984fe98b..039b6b795e 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -269,6 +269,7 @@ WINBINDD_SRC1 = '''winbindd/winbindd.c winbindd/wb_sid2gid.c winbindd/wb_uid2sid.c winbindd/wb_gid2sid.c + winbindd/wb_sids2xids.c winbindd/wb_queryuser.c winbindd/wb_lookupuseraliases.c winbindd/wb_lookupusergroups.c -- cgit