Change statem prefix to ossl_statem

Change various state machine functions to use the prefix ossl_statem
instead.

Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
Matt Caswell
2015-10-05 10:39:54 +01:00
parent 7c8b535716
commit fe3a329117
13 changed files with 130 additions and 126 deletions

View File

@@ -89,7 +89,7 @@ const char *SSL_state_string_long(const SSL *s)
{
const char *str;
if (statem_in_error(s)) {
if (ossl_statem_in_error(s)) {
return "error";
}
@@ -204,7 +204,7 @@ const char *SSL_state_string(const SSL *s)
{
const char *str;
if (statem_in_error(s)) {
if (ossl_statem_in_error(s)) {
return "SSLERR";
}