summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2024-08-08 23:50:30 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2024-08-08 23:50:30 +0000
commit9f39c2772c3a9f439976e8627a32146a0b4e8855 (patch)
tree80c40171081c088aebb8e095f765c7f6983e2e62 /lib
parentfaa81556da994797e715a60bbd0f6a65d4ef7585 (diff)
ct.h: move two asterisks to the proper place
Diffstat (limited to 'lib')
-rw-r--r--lib/libcrypto/ct/ct.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/ct/ct.h b/lib/libcrypto/ct/ct.h
index 895046e00ab..db5cf28b48e 100644
--- a/lib/libcrypto/ct/ct.h
+++ b/lib/libcrypto/ct/ct.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ct.h,v 1.7 2022/05/08 20:59:32 tb Exp $ */
+/* $OpenBSD: ct.h,v 1.8 2024/08/08 23:50:29 tb Exp $ */
/*
* Public API for Certificate Transparency (CT).
* Written by Rob Percival (robpercival@google.com) for the OpenSSL project.
@@ -116,7 +116,7 @@ CT_POLICY_EVAL_CTX *CT_POLICY_EVAL_CTX_new(void);
void CT_POLICY_EVAL_CTX_free(CT_POLICY_EVAL_CTX *ctx);
/* Gets the peer certificate that the SCTs are for */
-X509* CT_POLICY_EVAL_CTX_get0_cert(const CT_POLICY_EVAL_CTX *ctx);
+X509 *CT_POLICY_EVAL_CTX_get0_cert(const CT_POLICY_EVAL_CTX *ctx);
/*
* Sets the certificate associated with the received SCTs.
@@ -126,7 +126,7 @@ X509* CT_POLICY_EVAL_CTX_get0_cert(const CT_POLICY_EVAL_CTX *ctx);
int CT_POLICY_EVAL_CTX_set1_cert(CT_POLICY_EVAL_CTX *ctx, X509 *cert);
/* Gets the issuer of the aforementioned certificate */
-X509* CT_POLICY_EVAL_CTX_get0_issuer(const CT_POLICY_EVAL_CTX *ctx);
+X509 *CT_POLICY_EVAL_CTX_get0_issuer(const CT_POLICY_EVAL_CTX *ctx);
/*
* Sets the issuer of the certificate associated with the received SCTs.