From 077275e7835e5fd56f691e63e4408a33b0081cce Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Mon, 19 Nov 2012 02:10:58 +0900 Subject: [PATCH] Fix typo SPDY/3 --- src/shrpx_ssl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shrpx_ssl.cc b/src/shrpx_ssl.cc index a4c16edf..c57d4f6e 100644 --- a/src/shrpx_ssl.cc +++ b/src/shrpx_ssl.cc @@ -150,7 +150,7 @@ int select_next_proto_cb(SSL* ssl, void *arg) { if(spdylay_select_next_protocol(out, outlen, in, inlen) <= 0) { - *out = (unsigned char*)"SPDY/3"; + *out = (unsigned char*)"spdy/3"; *outlen = 6; } return SSL_TLSEXT_ERR_OK;