diff options
author | David Goulet <dgoulet@torproject.org> | 2018-05-09 12:40:06 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2018-05-09 12:50:53 -0400 |
commit | bca8a104b291c0f475c87905e0dc958978776ecb (patch) | |
tree | c63ecbcad977886535dd0eacdfde3c85a92d73b3 /changes | |
parent | 5227754b2f441c93da6436697a19841e9e71246f (diff) | |
download | tor-bca8a104b291c0f475c87905e0dc958978776ecb.tar.gz tor-bca8a104b291c0f475c87905e0dc958978776ecb.zip |
Having a ControlPort open doesn't mean we are a client
The any_client_port_set() returns true if the ControlPort is set which is
wrong because we can have that port open but still not behave as a tor client
(like many relays for instance).
Fixes #26062
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'changes')
-rw-r--r-- | changes/ticket26062 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/ticket26062 b/changes/ticket26062 new file mode 100644 index 0000000000..1ee49d8608 --- /dev/null +++ b/changes/ticket26062 @@ -0,0 +1,3 @@ + o Minor bugfixes (client): + - Don't consider Tor running as a client if the ControlPort is open. Fixes + bug 26062; bugfix on 0.2.9.4-alpha. |