summaryrefslogtreecommitdiffstats
path: root/ssl/ssl_stat.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-10-05 10:39:54 +0100
committerMatt Caswell <matt@openssl.org>2015-10-30 08:39:46 +0000
commitfe3a329117dbb04a17ca2cb9fc9e3493dc7f03ab (patch)
tree20150679f5f4e133a853b4d2c4b0e56fcdc18d66 /ssl/ssl_stat.c
parent7c8b53571698f32219a912e05bc71df4017094c1 (diff)
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>
Diffstat (limited to 'ssl/ssl_stat.c')
-rw-r--r--ssl/ssl_stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/ssl_stat.c b/ssl/ssl_stat.c
index d64ea1866c..8b7257a06f 100644
--- a/ssl/ssl_stat.c
+++ b/ssl/ssl_stat.c
@@ -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";
}