diff options
Diffstat (limited to 'bin/md5/md5.c')
-rw-r--r-- | bin/md5/md5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/md5/md5.c b/bin/md5/md5.c index 49aaef57a44..9e12e1b29d1 100644 --- a/bin/md5/md5.c +++ b/bin/md5/md5.c @@ -1,4 +1,4 @@ -/* $OpenBSD: md5.c,v 1.17 2003/03/12 21:29:48 millert Exp $ */ +/* $OpenBSD: md5.c,v 1.18 2003/03/13 02:38:22 millert Exp $ */ /* * Copyright (c) 2001,2003 Todd C. Miller <Todd.Miller@courtesan.com> @@ -268,7 +268,7 @@ digest_filelist(char *file) filename = p + 2; p = strchr(filename, ')'); - if (p == NULL || strncmp(p + 1, " = ", 3) != 0) + if (p == NULL || strncmp(p + 1, " = ", (size_t)3) != 0) continue; *p = '\0'; |