From 3e0e3f5459fcb5481b089755a49d25dcaa6f3575 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Fri, 10 Mar 2017 23:10:13 +0900 Subject: [PATCH] src: Fix typo --- src/shrpx_connection.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shrpx_connection.cc b/src/shrpx_connection.cc index de74c1d7..844735b6 100644 --- a/src/shrpx_connection.cc +++ b/src/shrpx_connection.cc @@ -319,7 +319,7 @@ void Connection::set_ssl(SSL *ssl) { namespace { // We should buffer at least full encrypted TLS record here. // Theoretically, peer can send client hello in several TLS records, -// which could exeed this limit, but it is not portable, and we don't +// which could exceed this limit, but it is not portable, and we don't // have to handle such exotic behaviour. bool read_buffer_full(DefaultPeekMemchunks &rbuf) { return rbuf.rleft_buffered() >= 20_k;