]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUG/MINOR: connection: fix typo in error message report
authorWilly Tarreau <w@1wt.eu>
Sun, 1 Dec 2013 19:29:58 +0000 (20:29 +0100)
committerWilly Tarreau <w@1wt.eu>
Sun, 1 Dec 2013 19:29:58 +0000 (20:29 +0100)
"unknownn" -> "unknown"

include/proto/connection.h

index 0c07f8c334657a6b84d6c82a3811786cd05da6a0..aa887694e4d1727b0f5f62d8a087956f92fb5fc9 100644 (file)
@@ -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;
 }