mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-23 23:28:47 -04:00
BUG/MINOR: connection: fix typo in error message report
"unknownn" -> "unknown"
This commit is contained in:
parent
1c0054fe83
commit
830bf61815
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue