summaryrefslogtreecommitdiff
path: root/source3/utils/smbpasswd.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-05-07 02:06:53 +0000
committerJeremy Allison <jra@samba.org>1998-05-07 02:06:53 +0000
commit51f88b4f7c0b87dd4a8932168c512b29a4915045 (patch)
tree95e547e1fb2e6c5d9ef8bf237bae043dea83a662 /source3/utils/smbpasswd.c
parent10a610cbc4acf89845b1878cdd0e5b193bc24455 (diff)
downloadsamba-51f88b4f7c0b87dd4a8932168c512b29a4915045.tar.gz
samba-51f88b4f7c0b87dd4a8932168c512b29a4915045.tar.bz2
samba-51f88b4f7c0b87dd4a8932168c512b29a4915045.zip
Fixed changed calls to machine password locking code.
Jeremy. (This used to be commit dfdc9b0b1e47717b83e54f1cf726e40122cf9baf)
Diffstat (limited to 'source3/utils/smbpasswd.c')
-rw-r--r--source3/utils/smbpasswd.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/source3/utils/smbpasswd.c b/source3/utils/smbpasswd.c
index 050be7e9b8..cc883ff51b 100644
--- a/source3/utils/smbpasswd.c
+++ b/source3/utils/smbpasswd.c
@@ -169,7 +169,6 @@ static int join_domain( char *domain, char *remote)
fstring machine_passwd;
unsigned char machine_passwd_hash[16];
unsigned char new_machine_passwd_hash[16];
- void *vp;
int ret = 1;
fstrcpy(remote_machine, remote ? remote : "");
@@ -196,20 +195,20 @@ for that domain.\n", prog_name, domain);
/*
* Get the machine account password.
*/
- if((vp = machine_password_lock( domain, global_myname, True)) == NULL) {
+ if(!machine_password_lock( domain, global_myname, True)) {
fprintf(stderr, "%s: unable to open the machine account password file for \
machine %s in domain %s.\n", prog_name, global_myname, domain);
return 1;
}
- if(!set_machine_account_password( vp, new_machine_passwd_hash)) {
+ if(!set_machine_account_password( new_machine_passwd_hash)) {
fprintf(stderr, "%s: unable to read the machine account password for \
machine %s in domain %s.\n", prog_name, global_myname, domain);
- machine_password_unlock(vp);
+ machine_password_unlock();
return 1;
}
- machine_password_unlock(vp);
+ machine_password_unlock();
/*
* If we are given a remote machine assume this is the PDC.