Appease make check-spaces

This commit is contained in:
Andrea Shepard 2016-02-23 05:07:29 +00:00
parent e019e11e61
commit cda2381789
3 changed files with 6 additions and 6 deletions

View File

@ -2080,7 +2080,7 @@ check_private_dir(const char *dirname, cpd_check_t check,
*/
tor_assert(dirname);
/* Open directory.
/* Open directory.
* O_NOFOLLOW to ensure that it does not follow symbolic links */
fd = open(sandbox_intern_string(dirname), O_NOFOLLOW);
@ -2122,7 +2122,7 @@ check_private_dir(const char *dirname, cpd_check_t check,
if ( fd == -1 ) return -1;
} else if (!(check & CPD_CHECK)) {
} else if (!(check & CPD_CHECK)) {
log_warn(LD_FS, "Directory %s does not exist.", dirname);
return -1;
}

View File

@ -2363,9 +2363,10 @@ connection_dir_client_reached_eof(dir_connection_t *conn)
if (conn->base_.purpose == DIR_PURPOSE_UPLOAD_RENDDESC_V2) {
#define SEND_HS_DESC_UPLOAD_FAILED_EVENT(reason) ( \
control_event_hs_descriptor_upload_failed(conn->identity_digest, \
conn->rend_data->onion_address, \
reason) )
control_event_hs_descriptor_upload_failed( \
conn->identity_digest, \
conn->rend_data->onion_address, \
reason) )
log_info(LD_REND,"Uploaded rendezvous descriptor (status %d "
"(%s))",
status_code, escaped(reason));

View File

@ -145,7 +145,6 @@ construct_consensus(const char **consensus_text_md)
tt_int_op(n_vrs, ==, 4);
tt_int_op(smartlist_len(v1->routerstatus_list), ==, 4);
dir_common_construct_vote_2(&vote, cert2, sign_skey_2,
&dir_common_gen_routerstatus_for_v3ns,
&v2, &n_vrs, now, 1);