summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bgpctl/parser.c
diff options
context:
space:
mode:
authorhenning <henning@openbsd.org>2007-02-22 08:38:19 +0000
committerhenning <henning@openbsd.org>2007-02-22 08:38:19 +0000
commitbd7e3be16f83f94bd1af28f0626fd9af8b692023 (patch)
tree713100d306ac46f15d1982a5521581ba8de656f2 /usr.sbin/bgpctl/parser.c
parentKNF (diff)
downloadwireguard-openbsd-bd7e3be16f83f94bd1af28f0626fd9af8b692023.tar.xz
wireguard-openbsd-bd7e3be16f83f94bd1af28f0626fd9af8b692023.zip
minor KNF bits here too
Diffstat (limited to 'usr.sbin/bgpctl/parser.c')
-rw-r--r--usr.sbin/bgpctl/parser.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.sbin/bgpctl/parser.c b/usr.sbin/bgpctl/parser.c
index de895e18f30..caec5342bc0 100644
--- a/usr.sbin/bgpctl/parser.c
+++ b/usr.sbin/bgpctl/parser.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: parser.c,v 1.37 2007/02/01 20:27:37 claudio Exp $ */
+/* $OpenBSD: parser.c,v 1.38 2007/02/22 08:38:19 henning Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -62,8 +62,8 @@ static const struct token t_main[];
static const struct token t_show[];
static const struct token t_show_summary[];
static const struct token t_show_fib[];
-static const struct token t_show_rib[];
-static const struct token t_show_rib_neigh[];
+static const struct token t_show_rib[];
+static const struct token t_show_rib_neigh[];
static const struct token t_show_neighbor[];
static const struct token t_show_neighbor_modifiers[];
static const struct token t_fib[];
@@ -813,4 +813,3 @@ inet6applymask(struct in6_addr *dest, const struct in6_addr *src, int prefixlen)
for (i = 0; i < 16; i++)
dest->s6_addr[i] = src->s6_addr[i] & mask.s6_addr[i];
}
-