diff options
author | 2006-06-15 09:59:48 +0000 | |
---|---|---|
committer | 2006-06-15 09:59:48 +0000 | |
commit | d936e96dd0a75ffef9462f8fd7fcfe81819b76f3 (patch) | |
tree | c9a5455bc0cc418b80551e6b8440f420c6ead787 | |
parent | - misplaced .El (diff) | |
download | wireguard-openbsd-d936e96dd0a75ffef9462f8fd7fcfe81819b76f3.tar.xz wireguard-openbsd-d936e96dd0a75ffef9462f8fd7fcfe81819b76f3.zip |
Shuffle some vars to make the struct ordered by size.
-rw-r--r-- | usr.sbin/bgpctl/parser.h | 6 |
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; }; |