diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-06-20 11:26:51 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-06-20 11:26:51 -0400 |
commit | 782eb02b79363bf8ed609495d516bc59972f4352 (patch) | |
tree | 7dd509a2a4eab9b92e5f9f0e119c53b1eff614e1 /changes | |
parent | eb632afb17aad58a23f3c8edce865ddf9a338f20 (diff) | |
download | tor-782eb02b79363bf8ed609495d516bc59972f4352.tar.gz tor-782eb02b79363bf8ed609495d516bc59972f4352.zip |
Send the correct content-encoding when serving cached_dir_t objects
A cached_dir_t object (for now) is always compressed with
DEFLATE_METHOD, but in handle_get_status_vote() to we were using the
general compression-negotiation code decide what compression to
claim we were using.
This was one of the reasons behind 22502.
Fixes bug 22669; bugfix on 0.3.1.1-alpha
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug22669 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/bug22669 b/changes/bug22669 new file mode 100644 index 0000000000..804a39e781 --- /dev/null +++ b/changes/bug22669 @@ -0,0 +1,4 @@ + o Minor bugfixes (compression): + - When serving directory votes compressed with zlib, + do not claim to have compressed them with zstd. Fixes bug 22669; + bugfix on 0.3.1.1-alpha. |