Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
David Goulet
Tor
Commits
04d4786c
Commit
04d4786c
authored
Oct 31, 2017
by
Nick Mathewson
👁
Browse files
Merge remote-tracking branch 'public/bug23693_029' into maint-0.2.9
parents
151d5ede
c50c98ba
Changes
2
Hide whitespace changes
Inline
Side-by-side
changes/bug23693
0 → 100644
View file @
04d4786c
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.
src/or/config.c
View file @
04d4786c
...
...
@@ -4456,6 +4456,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
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment