diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-08-09 11:17:02 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-08-09 12:26:02 +0200 |
commit | 084404b8abccd57f2dff95b1be601f287c1aec57 (patch) | |
tree | 0c02c8e9ccb5a43cc11397f400a0516d5a032c25 /lib/setopt.c | |
parent | db061571ef4b7a925da1c189b60c08b39e6b2dbf (diff) | |
download | curl-084404b8abccd57f2dff95b1be601f287c1aec57.tar.gz |
CURLOPT_H3: removed
There's no use for this anymore and it was never in a release.
Closes #4206
Diffstat (limited to 'lib/setopt.c')
-rw-r--r-- | lib/setopt.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/setopt.c b/lib/setopt.c index 1ad721131..48c4f2040 100644 --- a/lib/setopt.c +++ b/lib/setopt.c @@ -2755,13 +2755,6 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, va_list param) return result; break; #endif - case CURLOPT_H3: -#ifdef ENABLE_QUIC - /* not use anymore */ -#else - return CURLE_NOT_BUILT_IN; -#endif - break; default: /* unknown tag and its companion, just ignore: */ result = CURLE_UNKNOWN_OPTION; |