summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-01-30 16:02:27 +0100
committerDaniel Stenberg <daniel@haxx.se>2020-01-30 16:02:27 +0100
commitf0c061840786be35225a03c767c3b0a061062f3b (patch)
treef03d114303e613f72611458e513dda0ddf0225d5
parentda9e8ec7230fcf47174840e50fa8e846dcfe4f6a (diff)
downloadcurl-bagder/altsvc-h3-25.tar.gz
altsvc: use h3-25 nowbagder/altsvc-h3-25
-rw-r--r--lib/altsvc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/altsvc.c b/lib/altsvc.c
index bf869c37a..93204e012 100644
--- a/lib/altsvc.c
+++ b/lib/altsvc.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 2019 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -55,7 +55,7 @@ static enum alpnid alpn2alpnid(char *name)
if(strcasecompare(name, "h2"))
return ALPN_h2;
#if (defined(USE_QUICHE) || defined(USE_NGTCP2)) && !defined(UNITTESTS)
- if(strcasecompare(name, "h3-24"))
+ if(strcasecompare(name, "h3-25"))
return ALPN_h3;
#else
if(strcasecompare(name, "h3"))