From: Arlo Breault Date: Sun, 27 Jul 2014 16:05:01 +0000 (+0200) Subject: Confusing log message when circuit can't be extended X-Git-Tag: tor-0.2.4.23~3^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8f70d756fb5af54cc184d4683e445161f91cf1d1;p=thirdparty%2Ftor.git Confusing log message when circuit can't be extended --- diff --git a/src/or/control.c b/src/or/control.c index a88de12d69..ae9dd69d21 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -2506,7 +2506,7 @@ handle_control_extendcircuit(control_connection_t *conn, uint32_t len, goto done; } if (!node_has_descriptor(node)) { - connection_printf_to_buf(conn, "552 descriptor for \"%s\"\r\n", n); + connection_printf_to_buf(conn, "552 No descriptor for \"%s\"\r\n", n); goto done; } smartlist_add(nodes, (void*)node);