From: Andre Noll Date: Mon, 24 Aug 2015 15:35:08 +0000 (+0200) Subject: Fix comment on SHA1 implementation. X-Git-Tag: v0.1.3~12 X-Git-Url: http://git.tuebingen.mpg.de/?p=osl.git;a=commitdiff_plain;h=995d35b6530fc34e706f492bf356c4415d4ac503;ds=sidebyside Fix comment on SHA1 implementation. The dependency on openssl was dropped six years ago in commit f0884471. This commit corrects the stale comment that still says we use openssl's sha1 implementation. --- diff --git a/hash.h b/hash.h index 4603fdf..0feee84 100644 --- a/hash.h +++ b/hash.h @@ -12,7 +12,7 @@ #define HASH_TYPE unsigned char #include "sha1.h" -/** We use openssl's sha1 implementation. */ +/** Our own sha1 implementation, see sha1.c. */ #define hash_function sha1_hash /**