From: Simon Josefsson Date: Mon, 24 Oct 2005 19:14:09 +0000 (+0000) Subject: * md4.h: Shrink buffer size, now that we changed the type. X-Git-Tag: cvs-readonly~2758 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=a5f33a9b2e79819acb9315c928e896ec0fe80cb1;p=gnulib.git * md4.h: Shrink buffer size, now that we changed the type. --- diff --git a/lib/ChangeLog b/lib/ChangeLog index 60f30a6a7..7df414b2e 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2005-10-24 Simon Josefsson + + * md4.h: Shrink buffer size, now that we changed the type. + 2005-10-22 Simon Josefsson * arcfour.h, arcfour.c: Use fixed size indices in the diff --git a/lib/md4.h b/lib/md4.h index b4f5955fc..0a54307b4 100644 --- a/lib/md4.h +++ b/lib/md4.h @@ -34,7 +34,7 @@ struct md4_ctx uint32_t total[2]; uint32_t buflen; - uint32_t buffer[128]; + uint32_t buffer[32]; };