1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

Fixed compiler warning.

This commit is contained in:
Tim Potter 0001-01-01 00:00:00 +00:00
parent 97dbb54a13
commit adb61490af

View File

@ -106,7 +106,7 @@ static void get_random_stream(unsigned char *data, size_t datasize)
Note that the hash is not initialised.
*****************************************************************/
static void do_filehash(char *fname, unsigned char *hash)
static void do_filehash(char *fname, unsigned char *the_hash)
{
unsigned char buf[1011]; /* deliberate weird size */
unsigned char tmp_md4[16];
@ -119,7 +119,7 @@ static void do_filehash(char *fname, unsigned char *hash)
while ((n = read(fd, (char *)buf, sizeof(buf))) > 0) {
mdfour(tmp_md4, buf, n);
for (n=0;n<16;n++)
hash[n] ^= tmp_md4[n];
the_hash[n] ^= tmp_md4[n];
}
close(fd);
}