From efeede4192da405c097d59421dc9ab4399f2c568 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Mon, 9 Jan 2017 23:49:10 +0900 Subject: [PATCH] nghttpx: Fix typo --- 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 3351fea9..c5df1204 100644 --- a/src/shrpx_ssl.cc +++ b/src/shrpx_ssl.cc @@ -250,7 +250,7 @@ int tls_session_new_cb(SSL *ssl, SSL_SESSION *session) { id = SSL_SESSION_get_id(session, &idlen); if (LOG_ENABLED(INFO)) { - LOG(INFO) << "Memached: cache session, id=" << util::format_hex(id, idlen); + LOG(INFO) << "Memcached: cache session, id=" << util::format_hex(id, idlen); } auto req = make_unique();