summaryrefslogtreecommitdiff
path: root/source3/passdb/lookup_sid.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-03-10 16:19:17 +0100
committerVolker Lendecke <vl@samba.org>2011-03-10 18:48:34 +0100
commit16b007c2232cc8432fa9e93409e16367d72b149e (patch)
treed153e075fecbc79bf255d1f30aa3662942c965aa /source3/passdb/lookup_sid.c
parent8d0e2415309ee15fbf509d44caf3e1df5b900620 (diff)
downloadsamba-16b007c2232cc8432fa9e93409e16367d72b149e.tar.gz
samba-16b007c2232cc8432fa9e93409e16367d72b149e.tar.bz2
samba-16b007c2232cc8432fa9e93409e16367d72b149e.zip
Quite some callers of sid_split_rid do not care about the rid
Diffstat (limited to 'source3/passdb/lookup_sid.c')
-rw-r--r--source3/passdb/lookup_sid.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/passdb/lookup_sid.c b/source3/passdb/lookup_sid.c
index 0901319c8c..23566b657d 100644
--- a/source3/passdb/lookup_sid.c
+++ b/source3/passdb/lookup_sid.c
@@ -259,7 +259,6 @@ bool lookup_name(TALLOC_CTX *mem_ctx,
if (IS_DC && winbind_lookup_name("", name, &sid, &type)) {
struct dom_sid dom_sid;
- uint32 tmp_rid;
enum lsa_SidType domain_type;
if (type == SID_NAME_DOMAIN) {
@@ -273,7 +272,7 @@ bool lookup_name(TALLOC_CTX *mem_ctx,
* domain it figured out itself. Maybe fix that later... */
sid_copy(&dom_sid, &sid);
- sid_split_rid(&dom_sid, &tmp_rid);
+ sid_split_rid(&dom_sid, NULL);
if (!winbind_lookup_sid(tmp_ctx, &dom_sid, &domain, NULL,
&domain_type) ||