summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Frank <fabian@pagefault.de>2014-05-19 22:36:31 -0700
committerDaniel Stenberg <daniel@haxx.se>2014-05-20 12:57:56 +0200
commit316f79cef2318baf65dc55dec9b1617684fd78dd (patch)
tree3d2487928c8c40f3dc8723a2212e53313941a31f
parent274f932311a016482ee639a8d642ac0833671359 (diff)
downloadcurl-316f79cef2318baf65dc55dec9b1617684fd78dd.tar.gz
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".
-rw-r--r--lib/vtls/vtls.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/vtls.h b/lib/vtls/vtls.h
index 823c041ed..8f977a3d4 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);