From d090dadad6affb8e7a53b7af5804144fc489be06 Mon Sep 17 00:00:00 2001
From: Fabian Frank <fabian@pagefault.de>
Date: Mon, 19 May 2014 22:36:31 -0700
Subject: [PATCH] ALPN: fix typo in http/1.1 identifier

According to https://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg-05
it is "http/1.1" and not "http/1.0".
---
 lib/vtls/vtls.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/vtls/vtls.h b/lib/vtls/vtls.h
index 823c041..8f977a3 100644
--- a/lib/vtls/vtls.h
+++ b/lib/vtls/vtls.h
@@ -29,7 +29,7 @@
 
 /* see http://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg-04 */
 #define ALPN_HTTP_1_1_LENGTH 8
-#define ALPN_HTTP_1_1 "http/1.0"
+#define ALPN_HTTP_1_1 "http/1.1"
 
 bool Curl_ssl_config_matches(struct ssl_config_data* data,
                              struct ssl_config_data* needle);
-- 
1.8.3.2


