diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2019-02-12 09:00:57 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2019-02-12 09:00:57 +0000 |
commit | 2ccbe6a23816c67dd6fa67751f601621b4a32a8b (patch) | |
tree | f1efc26ac89cbb5b244a4e6d49eb52592881a654 /usr.sbin/bgpd | |
parent | 5934cdd82bb8e89248664ecd49c527747a4dbd41 (diff) |
Remove extra newline when printing vpn blocks
Diffstat (limited to 'usr.sbin/bgpd')
-rw-r--r-- | usr.sbin/bgpd/printconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/printconf.c b/usr.sbin/bgpd/printconf.c index 9396bd6eb58..310fbd7185f 100644 --- a/usr.sbin/bgpd/printconf.c +++ b/usr.sbin/bgpd/printconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: printconf.c,v 1.128 2019/02/11 15:44:25 claudio Exp $ */ +/* $OpenBSD: printconf.c,v 1.129 2019/02/12 09:00:56 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -394,7 +394,7 @@ print_l3vpn(struct l3vpn *vpn) struct network *n; printf("vpn \"%s\" on %s {\n", vpn->descr, vpn->ifmpe); - printf("\n\t%s\n", log_rd(vpn->rd)); + printf("\t%s\n", log_rd(vpn->rd)); print_l3vpn_targets(&vpn->export, "export-target"); print_l3vpn_targets(&vpn->import, "import-target"); |