gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnurl] 91/222: altsvc: correct the #ifdef for the ngtcp2 backend


From: gnunet
Subject: [gnurl] 91/222: altsvc: correct the #ifdef for the ngtcp2 backend
Date: Thu, 07 Nov 2019 00:09:47 +0100

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 218a62a6ce4fc0b0463f9e64e7a89afa4d151d16
Author: Daniel Stenberg <address@hidden>
AuthorDate: Wed Sep 25 12:13:43 2019 +0200

    altsvc: correct the #ifdef for the ngtcp2 backend
---
 lib/altsvc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/altsvc.c b/lib/altsvc.c
index 689991b63..a961e5c05 100644
--- a/lib/altsvc.c
+++ b/lib/altsvc.c
@@ -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";

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]