summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbenno <benno@openbsd.org>2019-11-28 03:25:17 +0000
committerbenno <benno@openbsd.org>2019-11-28 03:25:17 +0000
commit7bb6d3581691d676066a1103ed099b0b3be782c9 (patch)
tree554bf83683ad97f0d94197b4b2a87697734ace42
parentTo verify a manifest, a roa, or a certificate, we check its signature (diff)
downloadwireguard-openbsd-7bb6d3581691d676066a1103ed099b0b3be782c9.tar.xz
wireguard-openbsd-7bb6d3581691d676066a1103ed099b0b3be782c9.zip
some whitespace invaded this island, and deraadt@ demanded its removal.
-rw-r--r--usr.sbin/rpki-client/x509.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/rpki-client/x509.c b/usr.sbin/rpki-client/x509.c
index dec3df22f5b..c37d83b2d16 100644
--- a/usr.sbin/rpki-client/x509.c
+++ b/usr.sbin/rpki-client/x509.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: x509.c,v 1.8 2019/11/28 03:22:59 benno Exp $ */
+/* $OpenBSD: x509.c,v 1.9 2019/11/28 03:25:17 benno Exp $ */
/*
* Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -232,14 +232,14 @@ x509_get_crl(X509 *x, const char *fn)
crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, NULL, NULL);
if (sk_DIST_POINT_num(crldp) != 1) {
- warnx("%s: RFC 6487 section 4.8.6: CRL: "
+ warnx("%s: RFC 6487 section 4.8.6: CRL: "
"want 1 element, have %d", fn,
sk_DIST_POINT_num(crldp));
return NULL;
}
dp = sk_DIST_POINT_value(crldp, 0);
- if (dp->distpoint == NULL) {
+ if (dp->distpoint == NULL) {
warnx("%s: RFC 6487 section 4.8.6: CRL: "
"no distribution point name", fn);
return NULL;