diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2015-08-20 20:28:47 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-08-21 10:36:53 -0400 |
commit | 5cf24ff3af046391dcaf1df636e3bd5d7d17573d (patch) | |
tree | a54bcf47ef71710a223ec795d1b1e6002433affc /src/or/rendclient.c | |
parent | 38601f06b756161b7bfa1414e7a1968450609198 (diff) | |
download | tor-5cf24ff3af046391dcaf1df636e3bd5d7d17573d.tar.gz tor-5cf24ff3af046391dcaf1df636e3bd5d7d17573d.zip |
Fix a bunch of check-spaces complaints
Diffstat (limited to 'src/or/rendclient.c')
-rw-r--r-- | src/or/rendclient.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/or/rendclient.c b/src/or/rendclient.c index c6f29a7707..a39e518e99 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -1021,7 +1021,7 @@ rend_client_report_intro_point_failure(extend_info_t *failed_intro, /* fall through */ case INTRO_POINT_FAILURE_GENERIC: rend_cache_intro_failure_note(failure_type, - (uint8_t *) failed_intro->identity_digest, + (uint8_t *)failed_intro->identity_digest, rend_query->onion_address); rend_intro_point_free(intro); smartlist_del(ent->parsed->intro_nodes, i); @@ -1038,9 +1038,10 @@ rend_client_report_intro_point_failure(extend_info_t *failed_intro, intro->unreachable_count, zap_intro_point ? " Removing from descriptor.": ""); if (zap_intro_point) { - rend_cache_intro_failure_note(failure_type, - (uint8_t *) failed_intro->identity_digest, - rend_query->onion_address); + rend_cache_intro_failure_note( + failure_type, + (uint8_t *) failed_intro->identity_digest, + rend_query->onion_address); rend_intro_point_free(intro); smartlist_del(ent->parsed->intro_nodes, i); } |