diff options
author | Gerald Carter <jerry@samba.org> | 2005-03-22 18:07:58 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:56:13 -0500 |
commit | 93e04e941e15034c8e7aa1faedc74ce536049153 (patch) | |
tree | f3d64b04d3eb22e4ab44b9889d26272c0b6813f9 /source3/smbd/chgpasswd.c | |
parent | 09bb17511b3c5b32ab93ef37dbb451674bcc5a0b (diff) | |
download | samba-93e04e941e15034c8e7aa1faedc74ce536049153.tar.gz samba-93e04e941e15034c8e7aa1faedc74ce536049153.tar.xz samba-93e04e941e15034c8e7aa1faedc74ce536049153.zip |
r5961: final round of compiler warning fixes based on feedback from Jason Mader
(This used to be commit 9e77da9320c900b3e437d534e31fa5ff81e9acfd)
Diffstat (limited to 'source3/smbd/chgpasswd.c')
-rw-r--r-- | source3/smbd/chgpasswd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/chgpasswd.c b/source3/smbd/chgpasswd.c index 989fc4d68c6..d0e0f6e143a 100644 --- a/source3/smbd/chgpasswd.c +++ b/source3/smbd/chgpasswd.c @@ -747,8 +747,8 @@ static NTSTATUS check_oem_password(const char *user, static uchar null_pw[16]; static uchar null_ntpw[16]; SAM_ACCOUNT *sampass = NULL; - char *password_encrypted; - const char *encryption_key; + uint8 *password_encrypted; + const uint8 *encryption_key; const uint8 *lanman_pw, *nt_pw; uint16 acct_ctrl; uint32 new_pw_len; |