From: Willy Tarreau Date: Sun, 1 Dec 2013 19:29:58 +0000 (+0100) Subject: BUG/MINOR: connection: fix typo in error message report X-Git-Tag: v1.5-dev20~203 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=830bf618154e6dcf946d53d6806ad191ab5f9c44;p=thirdparty%2Fhaproxy.git BUG/MINOR: connection: fix typo in error message report "unknownn" -> "unknown" --- diff --git a/include/proto/connection.h b/include/proto/connection.h index 0c07f8c334..aa887694e4 100644 --- a/include/proto/connection.h +++ b/include/proto/connection.h @@ -503,7 +503,7 @@ static inline const char *conn_err_code_str(struct connection *c) case CO_ER_SSL_CA_FAIL: return "SSL client CA chain cannot be verified"; case CO_ER_SSL_CRT_FAIL: return "SSL client certificate not trusted"; case CO_ER_SSL_HANDSHAKE: return "SSL handshake failure"; - case CO_ER_SSL_NO_TARGET: return "Attempt to use SSL on an unknownn target (internal error)"; + case CO_ER_SSL_NO_TARGET: return "Attempt to use SSL on an unknown target (internal error)"; } return NULL; }