]> granicus.if.org Git - curl/commitdiff
altsvc: correct the #ifdef for the ngtcp2 backend
authorDaniel Stenberg <daniel@haxx.se>
Wed, 25 Sep 2019 10:13:43 +0000 (12:13 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 25 Sep 2019 10:13:43 +0000 (12:13 +0200)
lib/altsvc.c

index 689991b63efb1051c995d37a9e8d7608e279184f..a961e5c0560685b84810c766963b388a3eb2b9e6 100644 (file)
@@ -54,7 +54,7 @@ static enum alpnid alpn2alpnid(char *name)
     return ALPN_h1;
   if(strcasecompare(name, "h2"))
     return ALPN_h2;
-#if (defined(USE_QUICHE) || defined(USE_NGHTTP2)) && !defined(UNITTESTS)
+#if (defined(USE_QUICHE) || defined(USE_NGTCP2)) && !defined(UNITTESTS)
   if(strcasecompare(name, "h3-23"))
     return ALPN_h3;
 #else
@@ -73,7 +73,7 @@ const char *Curl_alpnid2str(enum alpnid id)
   case ALPN_h2:
     return "h2";
   case ALPN_h3:
-#if (defined(USE_QUICHE) || defined(USE_NGHTTP2)) && !defined(UNITTESTS)
+#if (defined(USE_QUICHE) || defined(USE_NGTCP2)) && !defined(UNITTESTS)
     return "h3-23";
 #else
     return "h3";