get rid of unused call
authorHerb Lewis <herb@samba.org>
Fri, 15 Aug 2003 01:36:35 +0000 (01:36 +0000)
committerHerb Lewis <herb@samba.org>
Fri, 15 Aug 2003 01:36:35 +0000 (01:36 +0000)
(This used to be commit 244c61b1dd52121109e6fd7c3514d1a73d1fa303)

source3/smbd/chgpasswd.c

index 6bc8626d8105d2c1d797d3b4d84d0881d4e75273..3ed94ef740ebb32d72ed0ec0b8b3fa3ef918395b 100644 (file)
@@ -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);