diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2012-03-28 15:02:15 +0200 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2012-03-28 15:02:15 +0200 |
commit | 77bc1b803e0d58b23ff48c2359300ef812f10ee1 (patch) | |
tree | 1e6a04b2418f5b14378aa7ab92ce05cbd7f90446 /src/or/networkstatus.c | |
parent | c3a7bcf4e6652fe34714caaf94cb39e555df87b1 (diff) | |
download | tor-77bc1b803e0d58b23ff48c2359300ef812f10ee1.tar.gz tor-77bc1b803e0d58b23ff48c2359300ef812f10ee1.zip |
Fix a bunch of check-spaces complaints
Diffstat (limited to 'src/or/networkstatus.c')
-rw-r--r-- | src/or/networkstatus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/networkstatus.c b/src/or/networkstatus.c index afd531aeeb..910b99c5c0 100644 --- a/src/or/networkstatus.c +++ b/src/or/networkstatus.c @@ -1357,8 +1357,8 @@ update_consensus_networkstatus_fetch_time_impl(time_t now, int flav) format_local_iso_time(tbuf1, c->fresh_until); format_local_iso_time(tbuf2, c->valid_until); format_local_iso_time(tbuf3, time_to_download_next_consensus[flav]); - log_info(LD_DIR, "Live %s consensus %s the most recent until %s and will " - "expire at %s; fetching the next one at %s.", + log_info(LD_DIR, "Live %s consensus %s the most recent until %s and " + "will expire at %s; fetching the next one at %s.", flavor, (c->fresh_until > now) ? "will be" : "was", tbuf1, tbuf2, tbuf3); } |