summaryrefslogtreecommitdiff
path: root/libextra
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2009-11-05 14:44:12 +0100
committerSimon Josefsson <simon@josefsson.org>2009-11-05 14:44:12 +0100
commitd400854a11f2460ddabc313e9983cde9544efedc (patch)
tree9795ff7cfb48bb368e860870fcce18c923ca7a7d /libextra
parent65e184ffdcf0441b51cd447f519d929376f7e06b (diff)
downloadgnutls-d400854a11f2460ddabc313e9983cde9544efedc.tar.gz
Update gnulib files.
Diffstat (limited to 'libextra')
-rw-r--r--libextra/gl/md5.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libextra/gl/md5.c b/libextra/gl/md5.c
index 2eb66ed578..0905367bdd 100644
--- a/libextra/gl/md5.c
+++ b/libextra/gl/md5.c
@@ -63,7 +63,7 @@
/* This array contains the bytes used to pad the buffer to the next
64-byte boundary. (RFC 1321, 3.1: Step 1) */
-static const unsigned char fillbuf[64] = { 0x80, 0 /* , 0, 0, ... */ };
+static const unsigned char fillbuf[64] = { 0x80, 0 /* , 0, 0, ... */ };
/* Initialize structure containing state of computation.
@@ -129,13 +129,13 @@ md5_finish_ctx (struct md5_ctx *ctx, void *resbuf)
return md5_read_ctx (ctx, resbuf);
}
-#if 0 /* Not needed by GnuTLS, and it has a large stack frame. */
+#if 0 /* Not needed by GnuTLS, and it has a large stack frame. */
/* Compute MD5 message digest for bytes read from STREAM. The
resulting message digest number will be written into the 16 bytes
beginning at RESBLOCK. */
int
-md5_stream (FILE * stream, void *resblock)
+md5_stream (FILE *stream, void *resblock)
{
struct md5_ctx ctx;
size_t sum;