summaryrefslogtreecommitdiffstats
path: root/source/smbd
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2005-03-22 18:07:58 +0000
committerGerald Carter <jerry@samba.org>2005-03-22 18:07:58 +0000
commit147a6a8a7576f1de7bf50a26b51e82524c7ebd8c (patch)
tree1ff4244298f8cc03399edfa37847c6b612bed886 /source/smbd
parent0a992866e794cb1cdbfe5e961f9d9240d0ada960 (diff)
downloadsamba-147a6a8a7576f1de7bf50a26b51e82524c7ebd8c.tar.gz
samba-147a6a8a7576f1de7bf50a26b51e82524c7ebd8c.tar.xz
samba-147a6a8a7576f1de7bf50a26b51e82524c7ebd8c.zip
r5961: final round of compiler warning fixes based on feedback from Jason Mader
Diffstat (limited to 'source/smbd')
-rw-r--r--source/smbd/chgpasswd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/smbd/chgpasswd.c b/source/smbd/chgpasswd.c
index 989fc4d68c6..d0e0f6e143a 100644
--- a/source/smbd/chgpasswd.c
+++ b/source/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;