diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2022-10-02 16:36:43 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2022-10-02 16:36:43 +0000 |
commit | 121f4d5e6cd8260daf18468d86d19d058e3092af (patch) | |
tree | cc566376862eeeb77c4a1a82ccd648a03afb6f34 /lib/libssl/ssl_stat.c | |
parent | 2d6404eaa0d21ce6d72f63eea099e7c79d4a23f0 (diff) |
Get rid of SSL_CTX_INTERNAL and SSL_INTERNAL.
These are no longer necessary due to SSL_CTX and SSL now being fully
opaque. Merge SSL_CTX_INTERNAL back into SSL_CTX and SSL_INTERNAL back
into SSL.
Prompted by tb@
Diffstat (limited to 'lib/libssl/ssl_stat.c')
-rw-r--r-- | lib/libssl/ssl_stat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libssl/ssl_stat.c b/lib/libssl/ssl_stat.c index 5d35528acdd..e4303e171a3 100644 --- a/lib/libssl/ssl_stat.c +++ b/lib/libssl/ssl_stat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_stat.c,v 1.18 2022/02/05 14:54:10 jsing Exp $ */ +/* $OpenBSD: ssl_stat.c,v 1.19 2022/10/02 16:36:41 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -325,7 +325,7 @@ SSL_rstate_string_long(const SSL *s) { const char *str; - switch (s->internal->rstate) { + switch (s->rstate) { case SSL_ST_READ_HEADER: str = "read header"; break; @@ -771,7 +771,7 @@ SSL_rstate_string(const SSL *s) { const char *str; - switch (s->internal->rstate) { + switch (s->rstate) { case SSL_ST_READ_HEADER: str = "RH"; break; |