diff options
author | beck <> | 2023-04-28 08:45:50 +0000 |
---|---|---|
committer | beck <> | 2023-04-28 08:45:50 +0000 |
commit | 7e6a1ba5fc0b071a37e95d82e11220848c402644 (patch) | |
tree | 93916451d92672f94262845f744a2b36d9cacc4d /src/regress/lib | |
parent | 0f5628b61aa524fcb0765685643996f70662d26b (diff) | |
download | openbsd-7e6a1ba5fc0b071a37e95d82e11220848c402644.tar.gz openbsd-7e6a1ba5fc0b071a37e95d82e11220848c402644.tar.bz2 openbsd-7e6a1ba5fc0b071a37e95d82e11220848c402644.zip |
remove debugging printf
Diffstat (limited to 'src/regress/lib')
-rw-r--r-- | src/regress/lib/libcrypto/x509/policy/policy.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/x509/policy/policy.c b/src/regress/lib/libcrypto/x509/policy/policy.c index 20b661563b..2fc484e4e3 100644 --- a/src/regress/lib/libcrypto/x509/policy/policy.c +++ b/src/regress/lib/libcrypto/x509/policy/policy.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: policy.c,v 1.4 2023/04/28 08:43:18 beck Exp $ */ | 1 | /* $OpenBSD: policy.c,v 1.5 2023/04/28 08:45:50 beck Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2020 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2020 Joel Sing <jsing@openbsd.org> |
4 | * Copyright (c) 2020-2021 Bob Beck <beck@openbsd.org> | 4 | * Copyright (c) 2020-2021 Bob Beck <beck@openbsd.org> |
@@ -141,7 +141,6 @@ verify_cert(const char *roots_file, const char *intermediate_file, | |||
141 | &bundle)) | 141 | &bundle)) |
142 | errx(1, "failed to load intermediate from '%s'", | 142 | errx(1, "failed to load intermediate from '%s'", |
143 | intermediate_file); | 143 | intermediate_file); |
144 | printf ("%d certs %d roots\n", sk_X509_num(bundle), sk_X509_num(roots)); | ||
145 | if (sk_X509_num(bundle) < 1) | 144 | if (sk_X509_num(bundle) < 1) |
146 | errx(1, "not enough certs in bundle"); | 145 | errx(1, "not enough certs in bundle"); |
147 | leaf = sk_X509_shift(bundle); | 146 | leaf = sk_X509_shift(bundle); |