diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2005-10-31 17:00:06 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2005-10-31 17:00:06 +0000 |
commit | d121d525939192c8b560ac92df9e581280000874 (patch) | |
tree | 595466fd06071e0dc4f424901ddf22281a54efe7 /usr.sbin | |
parent | 78d2436cd57031789d731672cb08a6cf95178bba (diff) |
Missing space in printf for unknown peers.
Diffstat (limited to 'usr.sbin')
-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 f3a0f87fdc5..e4ae67401f9 100644 --- a/usr.sbin/bgpd/printconf.c +++ b/usr.sbin/bgpd/printconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: printconf.c,v 1.48 2005/10/31 16:31:39 claudio Exp $ */ +/* $OpenBSD: printconf.c,v 1.49 2005/10/31 17:00:05 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -380,7 +380,7 @@ print_rule(struct peer *peer_l, struct filter_rule *r) p = p->next) ; /* nothing */ if (p == NULL) - printf("?"); + printf("? "); else printf("%s ", log_addr(&p->conf.remote_addr)); } else if (r->peer.groupid) { |