diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2021-08-16 10:38:58 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2021-08-16 10:38:58 +0000 |
commit | e3d7f5e46c995eebe95159b712d9dd58f9d53682 (patch) | |
tree | c1944845d806fa943d326ff5070164de951218c0 /usr.sbin/rpki-client | |
parent | 127f8dd20d88b0f6e06c827e7f8684de897be8eb (diff) |
add missing break
ok claudio@
Diffstat (limited to 'usr.sbin/rpki-client')
-rw-r--r-- | usr.sbin/rpki-client/validate.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/rpki-client/validate.c b/usr.sbin/rpki-client/validate.c index 8c3d2803dd8..d0a4e7c1efa 100644 --- a/usr.sbin/rpki-client/validate.c +++ b/usr.sbin/rpki-client/validate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: validate.c,v 1.14 2021/04/19 17:04:35 deraadt Exp $ */ +/* $OpenBSD: validate.c,v 1.15 2021/08/16 10:38:57 jsg Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -195,6 +195,7 @@ valid_cert(const char *fn, struct auth_tree *auths, const struct cert *cert) cert->ips[i].afi, buf1, sizeof(buf1)); warnx("%s: RFC 6487: uncovered IP: " "%s", fn, buf1); + break; case CERT_IP_INHERIT: warnx("%s: RFC 6487: uncovered IP: " "(inherit)", fn); |