diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-07-21 00:11:04 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-07-21 00:11:04 +0000 |
commit | 591e3c064badc7a5e7e0aa133d0c38eb7c25543a (patch) | |
tree | 68a630d5c2de7c8b442df711803c38e615face8a | |
parent | b1744aa4a06203d1d3a74a5f0bb911c733ab4637 (diff) |
Fix typo: unsigned -> unsigned char; from Thorsten Glaser
-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 d2d5f221183..a9ff97bf85f 100644 --- a/bin/md5/md5.c +++ b/bin/md5/md5.c @@ -1,4 +1,4 @@ -/* $OpenBSD: md5.c,v 1.25 2003/06/25 21:23:01 deraadt Exp $ */ +/* $OpenBSD: md5.c,v 1.26 2003/07/21 00:11:03 millert Exp $ */ /* * Copyright (c) 2001, 2003 Todd C. Miller <Todd.Miller@courtesan.com> @@ -370,7 +370,7 @@ digest_test(struct hash_functions *hf) union ANY_CTX context; int i; char digest[MAX_DIGEST_LEN + 1]; - unsigned buf[1000]; + unsigned char buf[1000]; char *test_strings[] = { "", "a", |