summaryrefslogtreecommitdiff
path: root/usr.sbin/rpki-client
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2022-11-28 17:47:02 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2022-11-28 17:47:02 +0000
commit8dd90498ac5cd636d5668394a018a392b387c813 (patch)
tree3ca63a04b0b12a89cdf53add591573eb4a8f83fe /usr.sbin/rpki-client
parent26d0119144f49a906b9d2ac784a565abb1fc75f2 (diff)
Reshuffle case a little bit. No functional change.
Diffstat (limited to 'usr.sbin/rpki-client')
-rw-r--r--usr.sbin/rpki-client/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/rpki-client/main.c b/usr.sbin/rpki-client/main.c
index 3e6b2648b0d..afa1878c655 100644
--- a/usr.sbin/rpki-client/main.c
+++ b/usr.sbin/rpki-client/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.224 2022/11/18 14:38:34 tb Exp $ */
+/* $OpenBSD: main.c,v 1.225 2022/11/28 17:47:01 claudio Exp $ */
/*
* Copyright (c) 2021 Claudio Jeker <claudio@openbsd.org>
* Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -616,8 +616,6 @@ entity_process(struct ibuf *b, struct stats *st, struct vrp_tree *tree,
case RTYPE_GBR:
st->gbrs++;
break;
- case RTYPE_FILE:
- break;
case RTYPE_ASPA:
st->aspas++;
io_read_buf(b, &c, sizeof(c));
@@ -636,6 +634,8 @@ entity_process(struct ibuf *b, struct stats *st, struct vrp_tree *tree,
case RTYPE_TAK:
st->taks++;
break;
+ case RTYPE_FILE:
+ break;
default:
errx(1, "unknown entity type %d", type);
}