summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-05-29 07:34:51 +0000
committerTim Potter <tpot@samba.org>2001-05-29 07:34:51 +0000
commitadb61490af7bbd5f028892692bfe831af8c79f23 (patch)
treea9af16627d97ee77c4564be0b709c9d32d08ae3c /source
parent97dbb54a13e2285f1905ee1ec9aafeebdaee8917 (diff)
downloadsamba-adb61490af7bbd5f028892692bfe831af8c79f23.tar.gz
samba-adb61490af7bbd5f028892692bfe831af8c79f23.tar.xz
samba-adb61490af7bbd5f028892692bfe831af8c79f23.zip
Fixed compiler warning.
Diffstat (limited to 'source')
-rw-r--r--source/lib/genrand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/lib/genrand.c b/source/lib/genrand.c
index 86b3b566965..d5556149af4 100644
--- a/source/lib/genrand.c
+++ b/source/lib/genrand.c
@@ -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);
}