diff options
author | Gerald Carter <jerry@samba.org> | 2005-03-22 18:07:58 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2005-03-22 18:07:58 +0000 |
commit | 147a6a8a7576f1de7bf50a26b51e82524c7ebd8c (patch) | |
tree | 1ff4244298f8cc03399edfa37847c6b612bed886 /source/libsmb/smbencrypt.c | |
parent | 0a992866e794cb1cdbfe5e961f9d9240d0ada960 (diff) | |
download | samba-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/libsmb/smbencrypt.c')
-rw-r--r-- | source/libsmb/smbencrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/libsmb/smbencrypt.c b/source/libsmb/smbencrypt.c index d4b05574118..55e06ffe972 100644 --- a/source/libsmb/smbencrypt.c +++ b/source/libsmb/smbencrypt.c @@ -513,7 +513,7 @@ BOOL encode_pw_buffer(char buffer[516], const char *password, int string_flags) *new_pw_len is the length in bytes of the possibly mulitbyte returned password including termination. ************************************************************/ -BOOL decode_pw_buffer(char in_buffer[516], char *new_pwrd, +BOOL decode_pw_buffer(uint8 in_buffer[516], char *new_pwrd, int new_pwrd_size, uint32 *new_pw_len, int string_flags) { |