From 859ef07fa02345e8a31e080d32aa8f6e28970a12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Sat, 17 Sep 2016 17:21:55 +0200 Subject: [PATCH] The Adler-32 checksum is described in RFC 1950, not RFC 1905. --- lib/hash/cryb_adler32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hash/cryb_adler32.c b/lib/hash/cryb_adler32.c index 1a07eb3..5c44fab 100644 --- a/lib/hash/cryb_adler32.c +++ b/lib/hash/cryb_adler32.c @@ -37,7 +37,7 @@ #include /* - * Simple implementation of the Adler-32 checksum described in RFC1905. + * Simple implementation of the Adler-32 checksum described in RFC 1950. */ uint32_t adler32_hash(const void *data, size_t len)