summaryrefslogtreecommitdiff
path: root/source3/utils/smbpasswd.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/utils/smbpasswd.c')
-rw-r--r--source3/utils/smbpasswd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/smbpasswd.c b/source3/utils/smbpasswd.c
index 61e97fd692..d66001e441 100644
--- a/source3/utils/smbpasswd.c
+++ b/source3/utils/smbpasswd.c
@@ -404,7 +404,7 @@ static int process_root(int local_flags)
struct samu *sampass = NULL;
BOOL ret;
- pdb_init_sam(&sampass);
+ sampass = samu_new( NULL );
ret = pdb_getsampwnam(sampass, user_name);
if((ret) &&
(pdb_get_lanman_passwd(sampass) == NULL)) {
@@ -438,7 +438,7 @@ static int process_root(int local_flags)
struct samu *sampass = NULL;
BOOL ret;
- pdb_init_sam(&sampass);
+ sampass = samu_new( NULL );
ret = pdb_getsampwnam(sampass, user_name);
printf("Password changed for user %s.", user_name );