diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-01-02 10:37:03 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-01-02 10:37:03 -0500 |
commit | ee4182612f7f06ae09531bf75e9b84ea30871278 (patch) | |
tree | 96e57d880bf515509c860f663f07713597d4af10 /changes | |
parent | 11e8a445c3051f017600b27999f0d666b7d63b04 (diff) | |
download | tor-ee4182612f7f06ae09531bf75e9b84ea30871278.tar.gz tor-ee4182612f7f06ae09531bf75e9b84ea30871278.zip |
Avoid spurious local-port warnings
Our old warn_nonlocal_client_ports() would give a bogus warning for
every nonlocal port every time it parsed any ports at all. So if it
parsed a nonlocal socksport, it would complain that it had a nonlocal
socksport...and then turn around and complain about the nonlocal
socksport again, calling it a nonlocal transport or nonlocal dnsport,
if it had any of those.
Fixes bug 7836; bugfix on 0.2.3.3-alpha.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug7836 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/changes/bug7836 b/changes/bug7836 new file mode 100644 index 0000000000..730d807451 --- /dev/null +++ b/changes/bug7836 @@ -0,0 +1,5 @@ + o Minor bugfixes: + - Avoid spurious warnings when configuring multiple client ports of + which only some are nonlocal. Previously, we had claimed that some + were nonlocal when in fact they weren't. Fixes bug 7836; bugfix on + 0.2.3.3-alpha. |