diff options
author | David Goulet <dgoulet@ev0ke.net> | 2015-06-25 16:19:25 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-08-11 09:34:41 -0400 |
commit | c265621a525f23f5e208f5ca0c7211bd6c7483ce (patch) | |
tree | d299f4a5e8dbcf5fb887ea066e4ec095420ad601 /src/common | |
parent | 1070be8217c26c8917323ead944124e2cd14f9f2 (diff) | |
download | tor-c265621a525f23f5e208f5ca0c7211bd6c7483ce.tar.gz tor-c265621a525f23f5e208f5ca0c7211bd6c7483ce.zip |
Fix typo in comment about digest256map_t
Signed-off-by: David Goulet <dgoulet@ev0ke.net>
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/container.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/container.h b/src/common/container.h index 125900c8ca..2a6ba01e62 100644 --- a/src/common/container.h +++ b/src/common/container.h @@ -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_); |