diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-05-04 08:58:06 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-05-04 08:58:06 -0400 |
commit | c6fe65fcafa901a629170c425da4099311a84279 (patch) | |
tree | c860f56aa674c4cb6af95931f1c46eea27f8221c /src | |
parent | baf489fc08c5f90b8ee0f00c15b1f6bb91c38926 (diff) | |
download | tor-c6fe65fcafa901a629170c425da4099311a84279.tar.gz tor-c6fe65fcafa901a629170c425da4099311a84279.zip |
Grammar fix in a log message
Diffstat (limited to 'src')
-rw-r--r-- | src/or/directory.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/directory.c b/src/or/directory.c index d31dd2f842..8b63e4df1f 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -2468,8 +2468,8 @@ handle_response_fetch_consensus(dir_connection_t *conn, networkstatus_consensus_download_failed(0, flavname); return -1; } - log_info(LD_DIR, "Applied consensus diff (body size %d) from server " - "'%s:%d' resulted in a new consensus document (size %d).", + log_info(LD_DIR, "Applied consensus diff (size %d) from server " + "'%s:%d', resulting in a new consensus document (size %d).", (int)body_len, conn->base_.address, conn->base_.port, (int)strlen(new_consensus)); consensus = new_consensus; |