diff options
author | Patrick Monnerat <patrick@monnerat.net> | 2021-01-21 00:38:52 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-01-24 18:15:03 +0100 |
commit | ecb13416e316fc1c781f865d2bb7e74462ef793b (patch) | |
tree | 9aa6952ee7245220c75337e01f1e7762237a5f45 /lib/content_encoding.c | |
parent | 14e075d1a7fd58c78145bccbd53e679a3b691f5e (diff) | |
download | curl-ecb13416e316fc1c781f865d2bb7e74462ef793b.tar.gz |
lib: remove conn->data uses
Closes #6499
Diffstat (limited to 'lib/content_encoding.c')
-rw-r--r-- | lib/content_encoding.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/content_encoding.c b/lib/content_encoding.c index 2918e0785..f179b8179 100644 --- a/lib/content_encoding.c +++ b/lib/content_encoding.c @@ -1077,10 +1077,10 @@ CURLcode Curl_build_unencoding_stack(struct Curl_easy *data, #else /* Stubs for builds without HTTP. */ -CURLcode Curl_build_unencoding_stack(struct connectdata *conn, +CURLcode Curl_build_unencoding_stack(struct Curl_easy *data, const char *enclist, int maybechunked) { - (void) conn; + (void) data; (void) enclist; (void) maybechunked; return CURLE_NOT_BUILT_IN; @@ -1097,9 +1097,9 @@ CURLcode Curl_unencode_write(struct Curl_easy *data, return CURLE_NOT_BUILT_IN; } -void Curl_unencode_cleanup(struct connectdata *conn) +void Curl_unencode_cleanup(struct Curl_easy *data) { - (void) conn; + (void) data; } char *Curl_all_content_encodings(void) |