Commit 5a21b270 authored by Nick Mathewson's avatar Nick Mathewson 🦀
Browse files

Merge branch 'maint-0.3.0' into maint-0.3.1

parents 7c2f688f f2e23d38
Loading
Loading
Loading
Loading

changes/bug23693

0 → 100644
+6 −0
Original line number Diff line number Diff line
  o Minor bugfixes (relay, crash):
    - Avoid a crash when transitioning from client mode to bridge mode.
      Previously, we would launch the worker threads whenever our "public
      server" mode changed, but not when our "server" mode changed.
      Fixes bug 23693; bugfix on 0.2.6.3-alpha.
+1 −0
Original line number Diff line number Diff line
@@ -4492,6 +4492,7 @@ options_transition_affects_workers(const or_options_t *old_options,
                                       new_options->ServerDNSSearchDomains ||
      old_options->SafeLogging_ != new_options->SafeLogging_ ||
      old_options->ClientOnly != new_options->ClientOnly ||
      server_mode(old_options) != server_mode(new_options) ||
      public_server_mode(old_options) != public_server_mode(new_options) ||
      !config_lines_eq(old_options->Logs, new_options->Logs) ||
      old_options->LogMessageDomains != new_options->LogMessageDomains)