diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-04-11 12:59:57 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-01-16 16:57:32 -0500 |
commit | ca18768fb2d178052fbf1207075406673f422c8a (patch) | |
tree | 6ea9ea35dd6980c2ec5aecf5aa483d3fa0c6e4af /src/or/rendservice.c | |
parent | 49e619c1cf7ed62334263a89eb031899bc2e7178 (diff) | |
download | tor-ca18768fb2d178052fbf1207075406673f422c8a.tar.gz tor-ca18768fb2d178052fbf1207075406673f422c8a.zip |
Aftermath of isin->contains renaming
Fix wide lines and comments, and add a changes file
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r-- | src/or/rendservice.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c index 7d4f6fa5d4..6ffa4f8f95 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -2809,7 +2809,8 @@ directory_post_to_hs_dir(rend_service_descriptor_t *renddesc, hs_dir->or_port); tor_free(hs_dir_ip); /* Remember successful upload to this router for next time. */ - if (!smartlist_contains_digest(successful_uploads, hs_dir->identity_digest)) + if (!smartlist_contains_digest(successful_uploads, + hs_dir->identity_digest)) smartlist_add(successful_uploads, hs_dir->identity_digest); } smartlist_clear(responsible_dirs); |