diff options
author | 2003-07-21 00:11:03 +0000 | |
---|---|---|
committer | 2003-07-21 00:11:03 +0000 | |
commit | d4a04963d0a21a1204eca53c560769c16943aedb (patch) | |
tree | ff1aedcc94d8aa8cab964e502a8ce94acd1f9521 | |
parent | acer chips seem to work with atapi dma now. ok grange@ (diff) | |
download | wireguard-openbsd-d4a04963d0a21a1204eca53c560769c16943aedb.tar.xz wireguard-openbsd-d4a04963d0a21a1204eca53c560769c16943aedb.zip |
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", |