summaryrefslogtreecommitdiff
path: root/changes/bug12509
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2015-01-04 17:28:54 -0500
committerNick Mathewson <nickm@torproject.org>2015-01-04 17:28:54 -0500
commit8ef6cdc39f047a7579858a6e23629c1c2718fc0a (patch)
tree57c354fe35b3f1055af1459955a939be582ea845 /changes/bug12509
parent0872d8e3cf3281fc5831375252db9e39de12e927 (diff)
downloadtor-8ef6cdc39f047a7579858a6e23629c1c2718fc0a.tar.gz
tor-8ef6cdc39f047a7579858a6e23629c1c2718fc0a.zip
Prevent changes to other options from removing . from AutomapHostsSuffixes
This happened because we changed AutomapHostsSuffixes to replace "." with "", since a suffix of "" means "match everything." But our option handling code for CSV options likes to remove empty entries when it re-parses stuff. Instead, let "." remain ".", and treat it specially when we're checking for a match. Fixes bug 12509; bugfix on 0.2.0.1-alpha.
Diffstat (limited to 'changes/bug12509')
-rw-r--r--changes/bug125094
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/bug12509 b/changes/bug12509
new file mode 100644
index 0000000000..8d5c1dd484
--- /dev/null
+++ b/changes/bug12509
@@ -0,0 +1,4 @@
+
+ o Minor bugfixes (automapping):
+ - Prevent changes to other optoins from removing the wildcard value "."
+ from "AutomapHostsSuffixes".