summaryrefslogtreecommitdiffstats
path: root/freebsd/crypto/openssl/crypto/md4/md4.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--freebsd/crypto/openssl/crypto/md4/md4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/freebsd/crypto/openssl/crypto/md4/md4.c b/freebsd/crypto/openssl/crypto/md4/md4.c
index 4a2325b4..20fe2ce3 100644
--- a/freebsd/crypto/openssl/crypto/md4/md4.c
+++ b/freebsd/crypto/openssl/crypto/md4/md4.c
@@ -104,7 +104,7 @@ void do_fp(FILE *f)
fd = fileno(f);
MD4_Init(&c);
for (;;) {
- i = read(fd, buf, sizeof buf);
+ i = read(fd, buf, sizeof(buf));
if (i <= 0)
break;
MD4_Update(&c, buf, (unsigned long)i);