summaryrefslogtreecommitdiff
path: root/src/or/rendcommon.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-12-31 14:19:57 +0000
committerRoger Dingledine <arma@torproject.org>2008-12-31 14:19:57 +0000
commitdfc6555ddd959ac8648ee7c1b598a71d5b09453c (patch)
treef7a321012228c72371be0caac4ec2addc74a70ed /src/or/rendcommon.c
parent9ea7e7f0cd33d06d64e4bae87272fce07889ff9d (diff)
downloadtor-dfc6555ddd959ac8648ee7c1b598a71d5b09453c.tar.gz
tor-dfc6555ddd959ac8648ee7c1b598a71d5b09453c.zip
switch over the bridge descriptor download mechanism to
use the same download mechanism as other places. i had to make an ugly hack around "IMPOSSIBLE_TO_DOWNLOAD+1". we should unhack that sometime. svn:r17834
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 5e73b3830a..f81cfed6a1 100644
--- a/src/or/rendcommon.c
+++ b/src/or/rendcommon.c
@@ -696,7 +696,7 @@ rend_encode_service_descriptor(rend_service_descriptor_t *desc,
intro->extend_info->identity_digest,
DIGEST_LEN);
tor_assert(strlen(ipoint) == ipoint_len);
- /* Assert that appending ipoint and its NUL won't over overun the
+ /* Assert that appending ipoint and its NUL won't over overrun the
* buffer. */
tor_assert(cp + ipoint_len+1 < *str_out + buflen);
memcpy(cp, ipoint, ipoint_len+1);