diff options
author | jsing <> | 2022-01-08 12:43:45 +0000 |
---|---|---|
committer | jsing <> | 2022-01-08 12:43:45 +0000 |
commit | dc6c56e417f73129ab2e1f477f2816f0cb654ff5 (patch) | |
tree | 8a7527e5b21283646513b32c21a84fef811d965b /src/lib/libssl/ssl_srvr.c | |
parent | 28e3801f3f0182c33d771dcddd72a444055cc7a1 (diff) | |
download | openbsd-dc6c56e417f73129ab2e1f477f2816f0cb654ff5.tar.gz openbsd-dc6c56e417f73129ab2e1f477f2816f0cb654ff5.tar.bz2 openbsd-dc6c56e417f73129ab2e1f477f2816f0cb654ff5.zip |
Rename CERT to SSL_CERT and CERT_PKEY to SSL_CERT_PKEY.
Nearly all structs in libssl start with an SSL_ suffix, rename CERT and
CERT_PKEY for consistency.
ok inoguchi@ tb@
Diffstat (limited to '')
-rw-r--r-- | src/lib/libssl/ssl_srvr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_srvr.c b/src/lib/libssl/ssl_srvr.c index 9fad66b91a..6e74943803 100644 --- a/src/lib/libssl/ssl_srvr.c +++ b/src/lib/libssl/ssl_srvr.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_srvr.c,v 1.132 2022/01/07 16:45:06 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_srvr.c,v 1.133 2022/01/08 12:43:44 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -2277,7 +2277,7 @@ int | |||
2277 | ssl3_send_server_certificate(SSL *s) | 2277 | ssl3_send_server_certificate(SSL *s) |
2278 | { | 2278 | { |
2279 | CBB cbb, server_cert; | 2279 | CBB cbb, server_cert; |
2280 | CERT_PKEY *cpk; | 2280 | SSL_CERT_PKEY *cpk; |
2281 | 2281 | ||
2282 | /* | 2282 | /* |
2283 | * Server Certificate - RFC 5246, section 7.4.2. | 2283 | * Server Certificate - RFC 5246, section 7.4.2. |