summaryrefslogtreecommitdiff
path: root/usr.sbin/bgpctl
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2006-06-15 09:59:49 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2006-06-15 09:59:49 +0000
commit012a57148c871480b2b00e4f28f53f41b275d44e (patch)
tree47ee35ca00b729c7a072c4ca86490aecf5ca312f /usr.sbin/bgpctl
parent0178065b566194c67b19b4b3500bfd0ea1be975c (diff)
Shuffle some vars to make the struct ordered by size.
Diffstat (limited to 'usr.sbin/bgpctl')
-rw-r--r--usr.sbin/bgpctl/parser.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bgpctl/parser.h b/usr.sbin/bgpctl/parser.h
index 37a106346c9..72d291b8873 100644
--- a/usr.sbin/bgpctl/parser.h
+++ b/usr.sbin/bgpctl/parser.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: parser.h,v 1.12 2006/05/23 12:14:34 henning Exp $ */
+/* $OpenBSD: parser.h,v 1.13 2006/06/15 09:59:48 claudio Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -50,11 +50,11 @@ enum actions {
struct parse_result {
struct bgpd_addr addr;
struct filter_as as;
+ struct filter_set_head set;
char peerdesc[PEER_DESCR_LEN];
- enum actions action;
int flags;
+ enum actions action;
u_int8_t prefixlen;
- struct filter_set_head set;
sa_family_t af;
};