diff options
Diffstat (limited to 'usr.sbin/bgpd/printconf.c')
-rw-r--r-- | usr.sbin/bgpd/printconf.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/printconf.c b/usr.sbin/bgpd/printconf.c index 47c4a5fce11..2fddffe3f29 100644 --- a/usr.sbin/bgpd/printconf.c +++ b/usr.sbin/bgpd/printconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: printconf.c,v 1.51 2006/02/02 14:06:05 claudio Exp $ */ +/* $OpenBSD: printconf.c,v 1.52 2006/02/09 21:05:09 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -120,6 +120,10 @@ print_set(struct filter_set_head *set) case ACTION_SET_PREPEND_PEER: printf("prepend-neighbor %u ", s->action.prepend); break; + case ACTION_DEL_COMMUNITY: + printf("community delete %u:%u ", + s->action.community.as, s->action.community.type); + break; case ACTION_SET_COMMUNITY: printf("community %u:%u ", s->action.community.as, s->action.community.type); |