]> granicus.if.org Git - curl/commitdiff
os400: Disable Alt-Svc by default since it's experimental
authorJay Satiro <raysatiro@yahoo.com>
Mon, 18 Mar 2019 20:33:58 +0000 (16:33 -0400)
committerJay Satiro <raysatiro@yahoo.com>
Sun, 24 Mar 2019 20:43:43 +0000 (16:43 -0400)
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

lib/config-os400.h
packages/OS400/ccsidcurl.c

index d2cb1caffe539ed635f14c048eecc77a2e3a9f9d..bde4f0b331a624cec81fd5f4ad117f6e035aa8b8 100644 (file)
 /* Define if you can safely include both <sys/time.h> and <time.h>. */
 #define TIME_WITH_SYS_TIME
 
-/* to enable alt-svc */
-#define USE_ALTSVC 1
+/* Define to enable alt-svc support (experimental) */
+#undef USE_ALTSVC
 
 /* Version number of package */
 #undef VERSION
index eae2c57511cbac7a1bbc13dbef206bda2cfe2209..a4cae27eec85919a4793c237712d4a263c052e3c 100644 (file)
@@ -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");