summaryrefslogtreecommitdiff
path: root/regress/gnu/egcs/gcc-bounds/md-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'regress/gnu/egcs/gcc-bounds/md-2.c')
-rw-r--r--regress/gnu/egcs/gcc-bounds/md-2.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/regress/gnu/egcs/gcc-bounds/md-2.c b/regress/gnu/egcs/gcc-bounds/md-2.c
index 86fa059ac35..91c89c043a0 100644
--- a/regress/gnu/egcs/gcc-bounds/md-2.c
+++ b/regress/gnu/egcs/gcc-bounds/md-2.c
@@ -1,17 +1,17 @@
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
-#include <md4.h>
+#include <md5.h>
const unsigned char data[] = "1234567890abcdefghijklmnopqrstuvwxyz";
int
main(int argc, char **argv)
{
- MD4_CTX ctx;
+ MD5_CTX ctx;
char ret[33];
- MD4Init(&ctx);
- MD4Data(data, sizeof data - 1, ret);
+ MD5Init(&ctx);
+ MD5Data(data, sizeof data - 1, ret);
printf("%s\n", ret);
}