summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2001-09-27 21:27:12 +0000
committerJeremy Allison <jra@samba.org>2001-09-27 21:27:12 +0000
commit75c50613316140314c89546c45d967bb0201c375 (patch)
treef70114f83550dea107bbb1bdbd0a991ab2f69c17 /source3
parenta69e900d97194f153afb5c45934820dfb89755eb (diff)
downloadsamba-75c50613316140314c89546c45d967bb0201c375.tar.gz
samba-75c50613316140314c89546c45d967bb0201c375.tar.bz2
samba-75c50613316140314c89546c45d967bb0201c375.zip
Removed smbpasswd_XX call (how did this get re-added, I removed all
these yesterday ?). Jeremy. (This used to be commit e25dc68843ed10d8454cb8166c39ff4b2e6a4159)
Diffstat (limited to 'source3')
-rw-r--r--source3/utils/pdbedit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/pdbedit.c b/source3/utils/pdbedit.c
index 41d66777fd..d0629fa258 100644
--- a/source3/utils/pdbedit.c
+++ b/source3/utils/pdbedit.c
@@ -466,7 +466,7 @@ static int import_users (char *filename)
pdb_set_lanman_passwd(sam_pwent, NULL);
pdb_set_acct_ctrl(sam_pwent, pdb_get_acct_ctrl(sam_pwent) | ACB_PWNOTREQ);
} else {
- if (!smbpasswd_gethexpwd((char *)p, smbpwd)) {
+ if (!pdb_gethexpwd((char *)p, smbpwd)) {
fprintf (stderr, "Error: malformed Lanman password entry at line %d (non hex chars)\n", line);
pdb_reset_sam (sam_pwent);
continue;