summaryrefslogtreecommitdiffstats
path: root/crypto/md4
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2002-11-12 13:23:40 +0000
committerBen Laurie <ben@openssl.org>2002-11-12 13:23:40 +0000
commit9831d941ca3d46eab3e61e6983921220b9d5d09a (patch)
treeec628033e73b153616f300b3807921c9fe7de70f /crypto/md4
parent707ceb29e04f7199f1ae619a6c0eab866fd15add (diff)
Many security improvements (CHATS) and a warning fix.
Diffstat (limited to 'crypto/md4')
-rw-r--r--crypto/md4/md4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/md4/md4.c b/crypto/md4/md4.c
index e4b0aac011..2ac2d914ff 100644
--- a/crypto/md4/md4.c
+++ b/crypto/md4/md4.c
@@ -108,7 +108,7 @@ void do_fp(FILE *f)
MD4_Init(&c);
for (;;)
{
- i=read(fd,buf,BUFSIZE);
+ i=read(fd,buf,sizeof buf);
if (i <= 0) break;
MD4_Update(&c,buf,(unsigned long)i);
}