summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHerb Lewis <herb@samba.org>2003-08-15 01:36:35 +0000
committerHerb Lewis <herb@samba.org>2003-08-15 01:36:35 +0000
commit244c61b1dd52121109e6fd7c3514d1a73d1fa303 (patch)
treefbe55f260f0f6503a838bb1fcce6e460ee82e5db
parent71469f3220e54959af13a395918c80273538b6ed (diff)
downloadsamba-244c61b1dd52121109e6fd7c3514d1a73d1fa303.tar.gz
samba-244c61b1dd52121109e6fd7c3514d1a73d1fa303.tar.xz
samba-244c61b1dd52121109e6fd7c3514d1a73d1fa303.zip
get rid of unused call
-rw-r--r--source/smbd/chgpasswd.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/source/smbd/chgpasswd.c b/source/smbd/chgpasswd.c
index 6bc8626d810..3ed94ef740e 100644
--- a/source/smbd/chgpasswd.c
+++ b/source/smbd/chgpasswd.c
@@ -746,7 +746,6 @@ NTSTATUS pass_oem_change(char *user,
uchar * ntdata, uchar * nthash)
{
fstring new_passwd;
- const char *unix_user;
SAM_ACCOUNT *sampass = NULL;
NTSTATUS nt_status = check_oem_password(user, lmdata, lmhash, ntdata, nthash,
&sampass, new_passwd, sizeof(new_passwd));
@@ -754,17 +753,6 @@ NTSTATUS pass_oem_change(char *user,
if (!NT_STATUS_IS_OK(nt_status))
return nt_status;
- /*
- * At this point we have the new case-sensitive plaintext
- * password in the fstring new_passwd. If we wanted to synchronise
- * with UNIX passwords we would call a UNIX password changing
- * function here. However it would have to be done as root
- * as the plaintext of the old users password is not
- * available. JRA.
- */
-
- unix_user = pdb_get_username(sampass);
-
/* We've already checked the old password here.... */
become_root();
nt_status = change_oem_password(sampass, NULL, new_passwd);