summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorSebastian Benoit <benno@cvs.openbsd.org>2019-11-28 03:25:18 +0000
committerSebastian Benoit <benno@cvs.openbsd.org>2019-11-28 03:25:18 +0000
commit5e65e15d8ea08212751f73682cf2f1d77dcb7b8c (patch)
tree9bd27a57d98c5eb8d6e17c97c336320401a0d72b /usr.sbin
parentb3cd36807a51131cee2caa5cfdf89e64aa075b7b (diff)
some whitespace invaded this island, and deraadt@ demanded its removal.
Diffstat (limited to 'usr.sbin')
-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;