diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-02-27 10:58:26 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-02-27 10:58:26 -0500 |
commit | 65b012c90bd410e5b4908f97ab2bfe1a2b3ec52c (patch) | |
tree | 7e52d94938148c23b57d8fa261f7be88eb59719c /src/or | |
parent | 135a0c20545aeff32407d2100a04b5b284b837de (diff) | |
download | tor-65b012c90bd410e5b4908f97ab2bfe1a2b3ec52c.tar.gz tor-65b012c90bd410e5b4908f97ab2bfe1a2b3ec52c.zip |
Fix a wide line
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/directory.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/directory.c b/src/or/directory.c index c460f12b5a..fae313159d 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -2164,8 +2164,9 @@ connection_dir_client_reached_eof(dir_connection_t *conn) tor_free(body); tor_free(headers); tor_free(reason); return -1; } - log_info(LD_DIR,"Received authority certificates (body size %d) from server " - "'%s:%d'", (int)body_len, conn->base_.address, conn->base_.port); + log_info(LD_DIR,"Received authority certificates (body size %d) from " + "server '%s:%d'", + (int)body_len, conn->base_.address, conn->base_.port); /* * Tell trusted_dirs_load_certs_from_string() whether it was by fp |