From e144a8b15f494fb27c25b79a910e7e52c704466f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 28 Mar 2008 12:20:06 +0100 Subject: mapping_tdb: use the correct sid for the key creation metze (This used to be commit 0d221a3f0a948e173b22585b7833a5441d860a57) --- source3/groupdb/mapping_tdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/groupdb/mapping_tdb.c b/source3/groupdb/mapping_tdb.c index 7c864e1340..e2aa06c8ff 100644 --- a/source3/groupdb/mapping_tdb.c +++ b/source3/groupdb/mapping_tdb.c @@ -163,7 +163,7 @@ static bool get_group_map_from_sid(DOM_SID sid, GROUP_MAP *map) /* the key is the SID, retrieving is direct */ - key = group_mapping_key(talloc_tos(), &map->sid); + key = group_mapping_key(talloc_tos(), &sid); if (key == NULL) { return false; } -- cgit