projects
/
curl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
558ff0f
)
[PATCH] setopt: fix CURLOPT_HTTP_CONTENT_DECODING
author
Jesus Malo Poyatos
<jmalopoy@opentext.com>
Thu, 7 Nov 2024 13:00:53 +0000
(14:00 +0100)
committer
Samuel Henrique
<samueloph@debian.org>
Sat, 9 Nov 2024 17:34:22 +0000
(17:34 +0000)
Regression from
30da1f5974d34841b30c4f
(shipped in 8.11.0)
Fixes #15511
Closes #15510
Gbp-Pq: Name setopt_fix_CURLOPT_HTTP_CONTENT_DECODING.patch
lib/setopt.c
patch
|
blob
|
history
diff --git
a/lib/setopt.c
b/lib/setopt.c
index 4f0697212739ef5e0bbfc7789b48f20544998205..ba80644bc73279e33cc155b387b94ede4b85aeb4 100644
(file)
--- a/
lib/setopt.c
+++ b/
lib/setopt.c
@@
-1146,7
+1146,7
@@
static CURLcode setopt_long(struct Curl_easy *data, CURLoption option,
/*
* raw data passed to the application when content encoding is used
*/
- data->set.http_ce_skip =
enabled;
+ data->set.http_ce_skip =
!enabled; /* reversed */
break;
#if !defined(CURL_DISABLE_FTP) || defined(USE_SSH)