Commit 54973a45 authored by Nick Mathewson's avatar Nick Mathewson 🦀
Browse files

Fix an apparently bogus check; fortunately, it seems to be untriggered.

parent e50e7395
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);