]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix typo in comment about digest256map_t
authorDavid Goulet <dgoulet@ev0ke.net>
Thu, 25 Jun 2015 20:19:25 +0000 (16:19 -0400)
committerNick Mathewson <nickm@torproject.org>
Tue, 11 Aug 2015 13:34:41 +0000 (09:34 -0400)
Signed-off-by: David Goulet <dgoulet@ev0ke.net>
src/common/container.h

index 125900c8ca0b9a93dd005835c3287edf8199cb07..2a6ba01e6237d9c854ca3a86b62c8e335a0999da 100644 (file)
@@ -361,7 +361,7 @@ char *smartlist_join_strings2(smartlist_t *sl, const char *join,
 DECLARE_MAP_FNS(strmap_t, const char *, strmap_);
 /* Map from const char[DIGEST_LEN] to void *. Implemented with a hash table. */
 DECLARE_MAP_FNS(digestmap_t, const char *, digestmap_);
-/* Map from const uint8_t[DIGEST_LEN] to void *. Implemented with a hash
+/* Map from const uint8_t[DIGEST256_LEN] to void *. Implemented with a hash
  * table. */
 DECLARE_MAP_FNS(digest256map_t, const uint8_t *, digest256map_);