diff options
author | cypherpunks <cypherpunks@torproject.org> | 2018-08-07 00:45:33 +0000 |
---|---|---|
committer | cypherpunks <cypherpunks@torproject.org> | 2018-08-17 13:27:24 +0000 |
commit | cc93f175ed6f7495b4d50cdaad0527f718da77f5 (patch) | |
tree | c4741c2523e9bf3da2bcd3206c3db2cfa3fe4651 /changes | |
parent | 936e2aa0de6edb0578e18ad0760a67ad64a448d4 (diff) | |
download | tor-cc93f175ed6f7495b4d50cdaad0527f718da77f5.tar.gz tor-cc93f175ed6f7495b4d50cdaad0527f718da77f5.zip |
rust/protover: fix hyphen parsing bug in ProtoSet::from_str()
It was parsing "1-2-3" as if it were 1-2, ignoring the 2nd hyphen
and everything after.
Introduced in d1820c1516a31a149fc51a9e5126bf899e4c4e08.
Fixes #27164; bugfix on 0.3.3.1-alpha.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug27164 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/bug27164 b/changes/bug27164 new file mode 100644 index 0000000000..d04d2f28f4 --- /dev/null +++ b/changes/bug27164 @@ -0,0 +1,4 @@ + o Minor bugfixes (rust): + - Protover parsing was ignoring a 2nd hyphen and everything after it, + accepting entries like "Link=1-5-foo". Fixes bug 27164; bugfix on + 0.3.3.1-alpha. |