From ab052271b3a331ff3587505bffed9a018e6abe0b Mon Sep 17 00:00:00 2001 From: Masakazu Kitajo Date: Mon, 27 Jul 2020 11:24:48 +0900 Subject: [PATCH] Fix a typo --- iocore/net/quic/QUICResetTokenTable.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iocore/net/quic/QUICResetTokenTable.cc b/iocore/net/quic/QUICResetTokenTable.cc index 0da753f976f..2980e32268e 100644 --- a/iocore/net/quic/QUICResetTokenTable.cc +++ b/iocore/net/quic/QUICResetTokenTable.cc @@ -40,7 +40,7 @@ QUICResetTokenTable::lookup(QUICStatelessResetToken token) Debug("quic_reset_token_table", "CID:%08" PRIx32 "...", result->second->connection_id().h32()); return result->second; } else { - Debug("quic_reset_token_table", "not fouund"); + Debug("quic_reset_token_table", "not found"); return nullptr; } }