diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-06-03 06:34:40 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-06-03 06:34:40 +0000 |
commit | cbeb0aa3f2d20e8587a0de5a340ca2901d49f174 (patch) | |
tree | 4049465b0b5986e0711532415ef02698b76a705e /source3/utils | |
parent | da44845a0907bc6c9da9aabc0374b8280a85017f (diff) | |
download | samba-cbeb0aa3f2d20e8587a0de5a340ca2901d49f174.tar.gz samba-cbeb0aa3f2d20e8587a0de5a340ca2901d49f174.tar.bz2 samba-cbeb0aa3f2d20e8587a0de5a340ca2901d49f174.zip |
moved secrets fns into secrets.c
(This used to be commit 16355a9c66a2bdab1feb8914a40bbea5272bb170)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/smbpasswd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/smbpasswd.c b/source3/utils/smbpasswd.c index 047a69419c..7f26c1d0e9 100644 --- a/source3/utils/smbpasswd.c +++ b/source3/utils/smbpasswd.c @@ -100,7 +100,7 @@ static int join_domain(char *domain, char *remote) * Write the old machine account password. */ - if(!set_trust_account_password(domain, orig_trust_passwd_hash)) { + if(!secrets_store_trust_account_password(domain, orig_trust_passwd_hash)) { fprintf(stderr, "Unable to write the machine account password for \ machine %s in domain %s.\n", global_myname, domain); return 1; |