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_both.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_both.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_both.c b/src/lib/libssl/ssl_both.c index 62652f8406..9894648db8 100644 --- a/src/lib/libssl/ssl_both.c +++ b/src/lib/libssl/ssl_both.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_both.c,v 1.39 2021/11/26 16:41:42 tb Exp $ */ | 1 | /* $OpenBSD: ssl_both.c,v 1.40 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 | * |
@@ -334,7 +334,7 @@ ssl3_add_cert(CBB *cbb, X509 *x) | |||
334 | } | 334 | } |
335 | 335 | ||
336 | int | 336 | int |
337 | ssl3_output_cert_chain(SSL *s, CBB *cbb, CERT_PKEY *cpk) | 337 | ssl3_output_cert_chain(SSL *s, CBB *cbb, SSL_CERT_PKEY *cpk) |
338 | { | 338 | { |
339 | X509_STORE_CTX *xs_ctx = NULL; | 339 | X509_STORE_CTX *xs_ctx = NULL; |
340 | STACK_OF(X509) *chain; | 340 | STACK_OF(X509) *chain; |