From: Nick Mathewson Date: Tue, 27 Oct 2009 03:14:53 +0000 (-0400) Subject: Fix an apparently bogus check; fortunately, it seems to be untriggered. X-Git-Tag: tor-0.2.2.6-alpha~18^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=54973a45a693cf3e0dada2572016fa6695a51e75;p=thirdparty%2Ftor.git Fix an apparently bogus check; fortunately, it seems to be untriggered. --- diff --git a/src/or/control.c b/src/or/control.c index f0178d74a9..ad9081da68 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -929,7 +929,7 @@ handle_control_loadconf(control_connection_t *conn, uint32_t len, tor_fragile_assert(); break; } - if (*errstring) + if (errstring) connection_printf_to_buf(conn, "%s: %s\r\n", msg, errstring); else connection_printf_to_buf(conn, "%s\r\n", msg);