diff options
author | Peter Palfrader <peter@palfrader.org> | 2008-01-23 08:45:14 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2008-01-23 08:45:14 +0000 |
commit | 1d91c156fe3d03f4902f2f081f8a5d1aef8e5663 (patch) | |
tree | b5cb349f57de66dddc7b2eb89b1a60457caf5cb3 /src/or/dirvote.c | |
parent | fc91704f78af7b7fa18e376a925ba4704b0d72d6 (diff) | |
download | tor-1d91c156fe3d03f4902f2f081f8a5d1aef8e5663.tar.gz tor-1d91c156fe3d03f4902f2f081f8a5d1aef8e5663.zip |
Some people still think letters fall off the side of the code if they go farther than 80 chars
svn:r13242
Diffstat (limited to 'src/or/dirvote.c')
-rw-r--r-- | src/or/dirvote.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/or/dirvote.c b/src/or/dirvote.c index 6f28cea6d7..f77dced4aa 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -1827,11 +1827,13 @@ dirvote_add_signatures(const char *detached_signatures_body, const char **msg) { if (pending_consensus) { - log_notice(LD_DIR, "Got a signature from %s. Adding it to the pending consensus.", source); + log_notice(LD_DIR, "Got a signature from %s. " + "Adding it to the pending consensus.", source); return dirvote_add_signatures_to_pending_consensus( detached_signatures_body, msg); } else { - log_notice(LD_DIR, "Got a signature from %s. Queueing it for the next consensus.", source); + log_notice(LD_DIR, "Got a signature from %s. " + "Queueing it for the next consensus.", source); if (!pending_consensus_signature_list) pending_consensus_signature_list = smartlist_create(); smartlist_add(pending_consensus_signature_list, |