summaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorKris Katterjohn <katterjohn@gmail.com>2019-01-25 15:52:40 -0600
committerKris Katterjohn <katterjohn@gmail.com>2019-02-25 16:03:42 -0600
commit1b9e77349ffbe813c7b16af67c069d967327f63b (patch)
tree5f39712e646092ac7a8ead7f313d4e5e4c495950 /changes
parenta3f9ddcf033881ac78cda0aa7e6a9fd7195868cc (diff)
downloadtor-1b9e77349ffbe813c7b16af67c069d967327f63b.tar.gz
tor-1b9e77349ffbe813c7b16af67c069d967327f63b.zip
Fix some error-checking logic and a misleading error message
When IPv4Only (IPv6Only) was used but the address could not be interpreted as a IPv4 (IPv6) address, the error message referred to the wrong IP version. This also fixes up the error-checking logic so it's more precise about what's being checked. Fixes bug 13221; bugfix on 0.2.3.9-alpha Signed-off-by: Kris Katterjohn <katterjohn@gmail.com>
Diffstat (limited to 'changes')
-rw-r--r--changes/bug132215
1 files changed, 5 insertions, 0 deletions
diff --git a/changes/bug13221 b/changes/bug13221
new file mode 100644
index 0000000000..13935a1921
--- /dev/null
+++ b/changes/bug13221
@@ -0,0 +1,5 @@
+ o Minor bugfixes (logging):
+ - Correct a misleading error message when IPv4Only or IPv6Only
+ is used but the resolved address can not be interpreted as an
+ address of the specified IP version. Fixes bug 13221; bugfix
+ on 0.2.3.9-alpha. Patch from Kris Katterjohn.