summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorclaudio <claudio@openbsd.org>2008-02-24 21:02:11 +0000
committerclaudio <claudio@openbsd.org>2008-02-24 21:02:11 +0000
commit5d1b8ed0ee12a6499b9e3768700d7eabe1fef4ef (patch)
treef2562f4bae581a93a2c0f1a882a069498b02f48c
parentProperly handle return value of dirname(). (diff)
downloadwireguard-openbsd-5d1b8ed0ee12a6499b9e3768700d7eabe1fef4ef.tar.xz
wireguard-openbsd-5d1b8ed0ee12a6499b9e3768700d7eabe1fef4ef.zip
Add missing space when printing ext. communities.
-rw-r--r--usr.sbin/bgpctl/bgpctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpctl/bgpctl.c b/usr.sbin/bgpctl/bgpctl.c
index 433bcea5467..d34d505eb41 100644
--- a/usr.sbin/bgpctl/bgpctl.c
+++ b/usr.sbin/bgpctl/bgpctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bgpctl.c,v 1.131 2008/01/23 08:18:11 claudio Exp $ */
+/* $OpenBSD: bgpctl.c,v 1.132 2008/02/24 21:02:11 claudio Exp $ */
/*
* Copyright (c) 2003 Henning Brauer <henning@openbsd.org>
@@ -1208,7 +1208,7 @@ show_rib_detail_msg(struct imsg *imsg, int nodescr)
printf("\n");
break;
case ATTR_EXT_COMMUNITIES:
- printf(" Ext. communities:");
+ printf(" Ext. communities: ");
show_ext_community(data, alen);
printf("\n");
break;