summaryrefslogtreecommitdiffstats
path: root/usr.sbin/rpki-client
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2020-04-28 15:03:39 +0000
committerderaadt <deraadt@openbsd.org>2020-04-28 15:03:39 +0000
commit2f9d4ba4c2b67896deaafc9687f7df079d3ee121 (patch)
treea37a3633c102487850d5b58224ebdaf6fe833a24 /usr.sbin/rpki-client
parentPrint statistics as comments at the top of the files which can take (diff)
downloadwireguard-openbsd-2f9d4ba4c2b67896deaafc9687f7df079d3ee121.tar.xz
wireguard-openbsd-2f9d4ba4c2b67896deaafc9687f7df079d3ee121.zip
a blank line in the header is prettier
Diffstat (limited to 'usr.sbin/rpki-client')
-rw-r--r--usr.sbin/rpki-client/output-bird.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/rpki-client/output-bird.c b/usr.sbin/rpki-client/output-bird.c
index 483dc583d95..78bf5bfbb93 100644
--- a/usr.sbin/rpki-client/output-bird.c
+++ b/usr.sbin/rpki-client/output-bird.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: output-bird.c,v 1.8 2020/04/28 13:41:35 deraadt Exp $ */
+/* $OpenBSD: output-bird.c,v 1.9 2020/04/28 15:03:39 deraadt Exp $ */
/*
* Copyright (c) 2019 Claudio Jeker <claudio@openbsd.org>
* Copyright (c) 2020 Robert Scheck <robert@fedoraproject.org>
@@ -31,7 +31,7 @@ output_bird1v4(FILE *out, struct vrp_tree *vrps, struct stats *st)
if (outputheader(out, st) < 0)
return -1;
- if (fprintf(out, "roa table %s {\n", bird_tablename) < 0)
+ if (fprintf(out, "\nroa table %s {\n", bird_tablename) < 0)
return -1;
RB_FOREACH(v, vrp_tree, vrps) {
@@ -58,7 +58,7 @@ output_bird1v6(FILE *out, struct vrp_tree *vrps, struct stats *st)
if (outputheader(out, st) < 0)
return -1;
- if (fprintf(out, "roa table %s {\n", bird_tablename) < 0)
+ if (fprintf(out, "\nroa table %s {\n", bird_tablename) < 0)
return -1;
RB_FOREACH(v, vrp_tree, vrps) {