diff options
author | tb <> | 2024-08-08 23:50:29 +0000 |
---|---|---|
committer | tb <> | 2024-08-08 23:50:29 +0000 |
commit | c3920a897db4b2da14a49fbba87f93fd938245f9 (patch) | |
tree | 0e744543cd63a3e7aed2b8f5af50dab56fb166a0 /src | |
parent | b29666049e6caedc26d4204e50cd5911f3ef4264 (diff) | |
download | openbsd-c3920a897db4b2da14a49fbba87f93fd938245f9.tar.gz openbsd-c3920a897db4b2da14a49fbba87f93fd938245f9.tar.bz2 openbsd-c3920a897db4b2da14a49fbba87f93fd938245f9.zip |
ct.h: move two asterisks to the proper place
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/ct/ct.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/ct/ct.h b/src/lib/libcrypto/ct/ct.h index 895046e00a..db5cf28b48 100644 --- a/src/lib/libcrypto/ct/ct.h +++ b/src/lib/libcrypto/ct/ct.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ct.h,v 1.7 2022/05/08 20:59:32 tb Exp $ */ | 1 | /* $OpenBSD: ct.h,v 1.8 2024/08/08 23:50:29 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Public API for Certificate Transparency (CT). | 3 | * Public API for Certificate Transparency (CT). |
4 | * Written by Rob Percival (robpercival@google.com) for the OpenSSL project. | 4 | * 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); | |||
116 | void CT_POLICY_EVAL_CTX_free(CT_POLICY_EVAL_CTX *ctx); | 116 | void CT_POLICY_EVAL_CTX_free(CT_POLICY_EVAL_CTX *ctx); |
117 | 117 | ||
118 | /* Gets the peer certificate that the SCTs are for */ | 118 | /* Gets the peer certificate that the SCTs are for */ |
119 | X509* CT_POLICY_EVAL_CTX_get0_cert(const CT_POLICY_EVAL_CTX *ctx); | 119 | X509 *CT_POLICY_EVAL_CTX_get0_cert(const CT_POLICY_EVAL_CTX *ctx); |
120 | 120 | ||
121 | /* | 121 | /* |
122 | * Sets the certificate associated with the received SCTs. | 122 | * 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); | |||
126 | int CT_POLICY_EVAL_CTX_set1_cert(CT_POLICY_EVAL_CTX *ctx, X509 *cert); | 126 | int CT_POLICY_EVAL_CTX_set1_cert(CT_POLICY_EVAL_CTX *ctx, X509 *cert); |
127 | 127 | ||
128 | /* Gets the issuer of the aforementioned certificate */ | 128 | /* Gets the issuer of the aforementioned certificate */ |
129 | X509* CT_POLICY_EVAL_CTX_get0_issuer(const CT_POLICY_EVAL_CTX *ctx); | 129 | X509 *CT_POLICY_EVAL_CTX_get0_issuer(const CT_POLICY_EVAL_CTX *ctx); |
130 | 130 | ||
131 | /* | 131 | /* |
132 | * Sets the issuer of the certificate associated with the received SCTs. | 132 | * Sets the issuer of the certificate associated with the received SCTs. |