From 54973a45a693cf3e0dada2572016fa6695a51e75 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 26 Oct 2009 23:14:53 -0400 Subject: Fix an apparently bogus check; fortunately, it seems to be untriggered. --- src/or/control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/or/control.c') 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); -- cgit v1.2.3-54-g00ecf