diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-05-31 18:51:36 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-05-31 18:51:36 +0000 |
commit | e08e8a6444a7fa5f9d9657fc22e70aa0c84f0de2 (patch) | |
tree | c6bae3b914e52a1eee15831a5b91c1b4e6674404 /usr.sbin | |
parent | fa63c6d8727a32a43bb64096b6101d41e949bd78 (diff) |
I made non-trivial contributions to these files.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/rpki-client/cert.c | 3 | ||||
-rw-r--r-- | usr.sbin/rpki-client/mft.c | 3 | ||||
-rw-r--r-- | usr.sbin/rpki-client/roa.c | 3 | ||||
-rw-r--r-- | usr.sbin/rpki-client/rsc.c | 3 | ||||
-rw-r--r-- | usr.sbin/rpki-client/x509.c | 5 |
5 files changed, 11 insertions, 6 deletions
diff --git a/usr.sbin/rpki-client/cert.c b/usr.sbin/rpki-client/cert.c index 891adc2455f..9ff4bbcda70 100644 --- a/usr.sbin/rpki-client/cert.c +++ b/usr.sbin/rpki-client/cert.c @@ -1,5 +1,6 @@ -/* $OpenBSD: cert.c,v 1.83 2022/05/31 18:33:16 tb Exp $ */ +/* $OpenBSD: cert.c,v 1.84 2022/05/31 18:51:35 tb Exp $ */ /* + * Copyright (c) 2022 Theo Buehler <tb@openbsd.org> * Copyright (c) 2021 Job Snijders <job@openbsd.org> * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> * diff --git a/usr.sbin/rpki-client/mft.c b/usr.sbin/rpki-client/mft.c index fb26b992274..fe90909c647 100644 --- a/usr.sbin/rpki-client/mft.c +++ b/usr.sbin/rpki-client/mft.c @@ -1,5 +1,6 @@ -/* $OpenBSD: mft.c,v 1.68 2022/05/23 14:10:18 tb Exp $ */ +/* $OpenBSD: mft.c,v 1.69 2022/05/31 18:51:35 tb Exp $ */ /* + * Copyright (c) 2022 Theo Buehler <tb@openbsd.org> * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> * * Permission to use, copy, modify, and distribute this software for any diff --git a/usr.sbin/rpki-client/roa.c b/usr.sbin/rpki-client/roa.c index cbb5709df8f..281cb0c2eb3 100644 --- a/usr.sbin/rpki-client/roa.c +++ b/usr.sbin/rpki-client/roa.c @@ -1,5 +1,6 @@ -/* $OpenBSD: roa.c,v 1.45 2022/05/23 14:10:18 tb Exp $ */ +/* $OpenBSD: roa.c,v 1.46 2022/05/31 18:51:35 tb Exp $ */ /* + * Copyright (c) 2022 Theo Buehler <tb@openbsd.org> * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> * * Permission to use, copy, modify, and distribute this software for any diff --git a/usr.sbin/rpki-client/rsc.c b/usr.sbin/rpki-client/rsc.c index a90d0789ed3..a4a735c2f74 100644 --- a/usr.sbin/rpki-client/rsc.c +++ b/usr.sbin/rpki-client/rsc.c @@ -1,5 +1,6 @@ -/* $OpenBSD: rsc.c,v 1.6 2022/05/31 18:45:14 tb Exp $ */ +/* $OpenBSD: rsc.c,v 1.7 2022/05/31 18:51:35 tb Exp $ */ /* + * Copyright (c) 2022 Theo Buehler <tb@openbsd.org> * Copyright (c) 2022 Job Snijders <job@fastly.com> * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> * diff --git a/usr.sbin/rpki-client/x509.c b/usr.sbin/rpki-client/x509.c index 9f226bc7f5e..db10d16cd44 100644 --- a/usr.sbin/rpki-client/x509.c +++ b/usr.sbin/rpki-client/x509.c @@ -1,5 +1,6 @@ -/* $OpenBSD: x509.c,v 1.45 2022/05/15 16:43:35 tb Exp $ */ +/* $OpenBSD: x509.c,v 1.46 2022/05/31 18:51:35 tb Exp $ */ /* + * Copyright (c) 2022 Theo Buehler <tb@openbsd.org> * Copyright (c) 2021 Claudio Jeker <claudio@openbsd.org> * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -357,7 +358,7 @@ x509_inherits(X509 *x) STACK_OF(IPAddressFamily) *addrblk = NULL; ASIdentifiers *asidentifiers = NULL; const IPAddressFamily *af; - int i, rc = 0; + int i, rc = 0; addrblk = X509_get_ext_d2i(x, NID_sbgp_ipAddrBlock, NULL, NULL); if (addrblk == NULL) |