diff options
Diffstat (limited to 'sys/dev/random/hash.h')
-rw-r--r-- | sys/dev/random/hash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/random/hash.h b/sys/dev/random/hash.h index 99f0b48..5a30821 100644 --- a/sys/dev/random/hash.h +++ b/sys/dev/random/hash.h @@ -32,7 +32,7 @@ struct yarrowhash { /* Big! Make static! */ keyInstance hashkey; /* Data cycles through here */ cipherInstance cipher; /* Rijndael internal */ u_char hash[KEYSIZE]; /* Repeatedly encrypted */ - u_char accum[KEYSIZE]; /* Accumulate partial chunks */ + char accum[KEYSIZE]; /* Accumulate partial chunks */ u_int partial; /* Keep track of < KEYSIZE chunks */ }; |