From 95fd90d5ae9179fada00842b10016f0509ec1780 Mon Sep 17 00:00:00 2001 From: billf Date: Wed, 21 Jul 1999 00:51:14 +0000 Subject: Since we are using strlen() let's assign it to the correct type and include the proper header. --- sbin/md5/md5.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sbin/md5') diff --git a/sbin/md5/md5.c b/sbin/md5/md5.c index 57776b4..e681272 100644 --- a/sbin/md5/md5.c +++ b/sbin/md5/md5.c @@ -19,7 +19,7 @@ #ifndef lint static const char rcsid[] = - "$Id: md5.c,v 1.13 1998/07/06 07:04:50 charnier Exp $"; + "$Id: md5.c,v 1.14 1999/05/01 14:54:21 kris Exp $"; #endif /* not lint */ #include @@ -28,6 +28,7 @@ static const char rcsid[] = #include #include #include +#include #include "global.h" @@ -100,7 +101,7 @@ static void MDString(string) char *string; { - unsigned int len = strlen(string); + size_t len = strlen(string); char buf[33]; printf("MD5 (\"%s\") = %s\n", string, MD5Data(string, len, buf)); -- cgit v1.1