From 9f5a16a22da812ed58dcb46979ab5ae27d3a905e Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 17 Dec 2007 14:51:37 +0100 Subject: Remove direct caller of secrets_fetch_trusted_domain_password(). This is a regession introduced by f7efc0eca9426e63b751c07a90265a12bb39cf95. This calls pdb_get_trusteddom_pw() instead, again. Michael (This used to be commit 91be824d2ba0b8dccf42ba2b8555a204aa1fa56c) --- source3/passdb/lookup_sid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/passdb/lookup_sid.c') diff --git a/source3/passdb/lookup_sid.c b/source3/passdb/lookup_sid.c index c7ffe5f1c8..f5b03ffff0 100644 --- a/source3/passdb/lookup_sid.c +++ b/source3/passdb/lookup_sid.c @@ -191,7 +191,7 @@ bool lookup_name(TALLOC_CTX *mem_ctx, this, tested an XP workstation in a NT domain -- vl */ if ((flags & LOOKUP_NAME_REMOTE) && IS_DC && - (secrets_fetch_trusted_domain_password(name, NULL, &sid, NULL))) + (pdb_get_trusteddom_pw(name, NULL, &sid, NULL))) { /* Swap domain and name */ tmp = name; name = domain; domain = tmp; -- cgit