commit 610cb0ecc43506d237074868050630b30d046a6d Author: Nick Mathewson nickm@torproject.org Date: Tue Sep 27 14:40:27 2011 -0400
Fix log message about what cells we are sending --- src/or/command.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/or/command.c b/src/or/command.c index a8e68e1..5519245 100644 --- a/src/or/command.c +++ b/src/or/command.c @@ -661,7 +661,7 @@ command_process_versions_cell(var_cell_t *cell, or_connection_t *conn) send_any ? "Sending cells:" : "Waiting for CERTS cell", send_versions ? " VERSIONS" : "", send_certs ? " CERTS" : "", - send_versions ? " AUTH_CHALLENGE" : "", + send_chall ? " AUTH_CHALLENGE" : "", send_netinfo ? " NETINFO" : "");
if (send_versions) {
tor-commits@lists.torproject.org