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 | 16355a9c66a2bdab1feb8914a40bbea5272bb170 (patch) | |
tree | 7edf7766b97a8ab8ba38149cd154d30d6edcabb0 /source/utils | |
parent | f890bcf06786e7c63bf76fad2fd46d287a99a270 (diff) | |
download | samba-16355a9c66a2bdab1feb8914a40bbea5272bb170.tar.gz samba-16355a9c66a2bdab1feb8914a40bbea5272bb170.tar.xz samba-16355a9c66a2bdab1feb8914a40bbea5272bb170.zip |
moved secrets fns into secrets.c
Diffstat (limited to 'source/utils')
-rw-r--r-- | source/utils/smbpasswd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/utils/smbpasswd.c b/source/utils/smbpasswd.c index 047a69419c5..7f26c1d0e95 100644 --- a/source/utils/smbpasswd.c +++ b/source/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; |