summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorclaudio <claudio@openbsd.org>2019-02-12 09:00:56 +0000
committerclaudio <claudio@openbsd.org>2019-02-12 09:00:56 +0000
commitf3d22dbc1d93ba6f7b4a9d0b709382ce45f6e12d (patch)
treeedea4a85a07bd01e49d057340082e78971ef9a07
parentRemove log_debug which is no longer needed (diff)
downloadwireguard-openbsd-f3d22dbc1d93ba6f7b4a9d0b709382ce45f6e12d.tar.xz
wireguard-openbsd-f3d22dbc1d93ba6f7b4a9d0b709382ce45f6e12d.zip
Remove extra newline when printing vpn blocks
-rw-r--r--usr.sbin/bgpd/printconf.c4
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");