diff options
author | Michael Adam <obnox@samba.org> | 2007-12-17 14:51:37 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2007-12-17 14:51:37 +0100 |
commit | 9f5a16a22da812ed58dcb46979ab5ae27d3a905e (patch) | |
tree | 72661403c9c778e7af6ed98b09b15ffa98cac6d8 /source3/passdb | |
parent | 3fa2183941b4f5ccd53be70249f40e1aaaf24b77 (diff) | |
download | samba-9f5a16a22da812ed58dcb46979ab5ae27d3a905e.tar.gz samba-9f5a16a22da812ed58dcb46979ab5ae27d3a905e.tar.bz2 samba-9f5a16a22da812ed58dcb46979ab5ae27d3a905e.zip |
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)
Diffstat (limited to 'source3/passdb')
-rw-r--r-- | source3/passdb/lookup_sid.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |