nghttpx: Fix typo

This commit is contained in:
Tatsuhiro Tsujikawa 2017-01-09 23:49:10 +09:00
parent 6a8749873f
commit efeede4192
1 changed files with 1 additions and 1 deletions

View File

@ -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<MemcachedRequest>();