]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix an apparently bogus check; fortunately, it seems to be untriggered.
authorNick Mathewson <nickm@torproject.org>
Tue, 27 Oct 2009 03:14:53 +0000 (23:14 -0400)
committerNick Mathewson <nickm@torproject.org>
Tue, 27 Oct 2009 03:14:53 +0000 (23:14 -0400)
src/or/control.c

index f0178d74a905a9029b3b8091335749b8a8d139af..ad9081da68dcfbb0fdb8f49b90e43af90ea9417d 100644 (file)
@@ -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);