aboutsummaryrefslogtreecommitdiff
path: root/src/or/rendcommon.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2013-01-17 16:08:28 -0500
committerNick Mathewson <nickm@torproject.org>2013-01-17 16:08:28 -0500
commite0581a4b571f13dd0de801792c853e22ac244a36 (patch)
treeb309c47048cb98323c197dff1df010923f8dc09d /src/or/rendcommon.c
parenteea69b7020dbd1bfa172f3660be2e5644fd9687f (diff)
downloadtor-e0581a4b571f13dd0de801792c853e22ac244a36.tar
tor-e0581a4b571f13dd0de801792c853e22ac244a36.tar.gz
Replace base-{16,32,64} with base{16,32,64} in the code
Patch from onizuka generated with find ./ -type f -perm -u+rw -exec sed -ri 's/(Base)-(16|32|64)/\1\2/gi' {} \; Fixes issue 6875 on Tor.
Diffstat (limited to 'src/or/rendcommon.c')
-rw-r--r--src/or/rendcommon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendcommon.c b/src/or/rendcommon.c
index addbd42b9..79c1a724e 100644
--- a/src/or/rendcommon.c
+++ b/src/or/rendcommon.c
@@ -954,7 +954,7 @@ rend_cache_lookup_entry(const char *query, int version, rend_cache_entry_t **e)
return 1;
}
-/** <b>query</b> is a base-32'ed service id. If it's malformed, return -1.
+/** <b>query</b> is a base32'ed service id. If it's malformed, return -1.
* Else look it up.
* - If it is found, point *desc to it, and write its length into
* *desc_len, and return 1.