aboutsummaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorJay Satiro <raysatiro@yahoo.com>2019-03-18 16:33:58 -0400
committerJay Satiro <raysatiro@yahoo.com>2019-03-24 16:43:43 -0400
commita375ab3be458c1aed126efc9739cf4d6eae9d59b (patch)
tree116bd298f3dd0c66deab3496903000381fa55660 /packages
parent27fb521df567ae1b26fb07b42d393136eed90c14 (diff)
os400: Disable Alt-Svc by default since it's experimental
Follow-up to 520f0b4 which added Alt-Svc support and enabled it by default for OS400. Since the feature is experimental, it should be disabled by default. Ref: https://github.com/curl/curl/commit/520f0b4#commitcomment-32792332 Ref: https://curl.haxx.se/mail/lib-2019-02/0008.html Closes https://github.com/curl/curl/pull/3688
Diffstat (limited to 'packages')
-rw-r--r--packages/OS400/ccsidcurl.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/OS400/ccsidcurl.c b/packages/OS400/ccsidcurl.c
index eae2c5751..a4cae27ee 100644
--- a/packages/OS400/ccsidcurl.c
+++ b/packages/OS400/ccsidcurl.c
@@ -1132,7 +1132,12 @@ curl_easy_setopt_ccsid(CURL * curl, CURLoption tag, ...)
if(testwarn) {
testwarn = 0;
- if((int) STRING_LASTZEROTERMINATED != (int) STRING_ALTSVC + 1 ||
+ if(
+#ifdef USE_ALTSVC
+ (int) STRING_LASTZEROTERMINATED != (int) STRING_ALTSVC + 1 ||
+#else
+ (int) STRING_LASTZEROTERMINATED != (int) STRING_DOH + 1 ||
+#endif
(int) STRING_LAST != (int) STRING_COPYPOSTFIELDS + 1)
curl_mfprintf(stderr,
"*** WARNING: curl_easy_setopt_ccsid() should be reworked ***\n");