summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ct/ct_policy.c
diff options
context:
space:
mode:
authortb <>2025-05-10 05:54:39 +0000
committertb <>2025-05-10 05:54:39 +0000
commit41e8f99dd1625a9f0c80ce9d4383e95b18e85709 (patch)
tree70b02845e44482dbe558f0dc5d503c5d977aa73d /src/lib/libcrypto/ct/ct_policy.c
parentf1cb2042ed58c0f2125c881f6786e4e3580203e7 (diff)
downloadopenbsd-41e8f99dd1625a9f0c80ce9d4383e95b18e85709.tar.gz
openbsd-41e8f99dd1625a9f0c80ce9d4383e95b18e85709.tar.bz2
openbsd-41e8f99dd1625a9f0c80ce9d4383e95b18e85709.zip
Use err_local.h rather than err.h in most places
ok jsing
Diffstat (limited to 'src/lib/libcrypto/ct/ct_policy.c')
-rw-r--r--src/lib/libcrypto/ct/ct_policy.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/libcrypto/ct/ct_policy.c b/src/lib/libcrypto/ct/ct_policy.c
index eb2b312019..a242b0d8f8 100644
--- a/src/lib/libcrypto/ct/ct_policy.c
+++ b/src/lib/libcrypto/ct/ct_policy.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ct_policy.c,v 1.6 2023/07/08 07:22:58 beck Exp $ */ 1/* $OpenBSD: ct_policy.c,v 1.7 2025/05/10 05:54:38 tb Exp $ */
2/* 2/*
3 * Implementations of Certificate Transparency SCT policies. 3 * Implementations of Certificate Transparency SCT policies.
4 * Written by Rob Percival (robpercival@google.com) for the OpenSSL project. 4 * Written by Rob Percival (robpercival@google.com) for the OpenSSL project.
@@ -56,11 +56,12 @@
56# error "CT is disabled" 56# error "CT is disabled"
57#endif 57#endif
58 58
59#include <openssl/ct.h>
60#include <openssl/err.h>
61#include <time.h> 59#include <time.h>
62 60
61#include <openssl/ct.h>
62
63#include "ct_local.h" 63#include "ct_local.h"
64#include "err_local.h"
64 65
65/* 66/*
66 * Number of seconds in the future that an SCT timestamp can be, by default, 67 * Number of seconds in the future that an SCT timestamp can be, by default,