From 9b0a40ec7866005928e49b4717d626e64057c331 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Sat, 10 Dec 2005 08:27:01 +0000 Subject: crank the max line limit down to 150 chars. svn:r5550 --- src/or/directory.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src/or/directory.c') diff --git a/src/or/directory.c b/src/or/directory.c index b3f8bbe2e3..fe100c9397 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -1108,10 +1108,12 @@ connection_dir_client_reached_eof(connection_t *conn) info(LD_REND,"Uploading rendezvous descriptor: finished with status 200 (\"%s\")", reason); break; case 400: - warn(LD_REND,"http status 400 (\"%s\") response from dirserver '%s:%d'. Malformed rendezvous descriptor?", reason, conn->address, conn->port); + warn(LD_REND,"http status 400 (\"%s\") response from dirserver '%s:%d'. Malformed rendezvous descriptor?", + reason, conn->address, conn->port); break; default: - warn(LD_REND,"http status %d (\"%s\") response unexpected (server '%s:%d').", status_code, reason, conn->address, conn->port); + warn(LD_REND,"http status %d (\"%s\") response unexpected (server '%s:%d').", + status_code, reason, conn->address, conn->port); break; } } @@ -1130,7 +1132,9 @@ connection_dir_reached_eof(connection_t *conn) * parsing partial serverdesc responses. */ if (conn->purpose == DIR_PURPOSE_FETCH_SERVERDESC && buf_datalen(conn->inbuf)>=(24*1024)) { - notice(LD_DIR, "Directory connection closed early after downloading %d bytes of descriptors. If this happens often, please file a bug report.", + notice(LD_DIR, + "Directory connection closed early after downloading %d bytes " + "of descriptors. If this happens often, please file a bug report.", (int)buf_datalen(conn->inbuf)); } connection_close_immediate(conn); /* it was an error; give up on flushing */ -- cgit v1.2.3-54-g00ecf