diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-04-28 15:03:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-04-28 15:03:40 +0000 |
commit | aa4a81a995ca97aa25988779c0ab97c4e6917282 (patch) | |
tree | 638b9eba3e5097b10791047c044b215f9f613768 /usr.sbin | |
parent | 2a662ef22680b0236d0e2fafb77b4f5c722869be (diff) |
a blank line in the header is prettier
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/rpki-client/output-bird.c | 6 |
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) { |