diff options
author | 2004-11-19 14:45:57 +0000 | |
---|---|---|
committer | 2004-11-19 14:45:57 +0000 | |
commit | 03fc3177400db1b79f267caa97524c63205222f7 (patch) | |
tree | e56e1d32c83b31b7f12ae047c5fc742f9657719c | |
parent | For consistency reasons rename struct as_filter to struct filter_as. (diff) | |
download | wireguard-openbsd-03fc3177400db1b79f267caa97524c63205222f7.tar.xz wireguard-openbsd-03fc3177400db1b79f267caa97524c63205222f7.zip |
Rename struct as_filter to struct filter_as.
-rw-r--r-- | usr.sbin/bgpctl/parser.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpctl/parser.h b/usr.sbin/bgpctl/parser.h index 586622bc9ae..cc8a3e6b5f2 100644 --- a/usr.sbin/bgpctl/parser.h +++ b/usr.sbin/bgpctl/parser.h @@ -1,4 +1,4 @@ -/* $OpenBSD: parser.h,v 1.5 2004/08/20 15:49:35 henning Exp $ */ +/* $OpenBSD: parser.h,v 1.6 2004/11/19 14:45:57 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -49,7 +49,7 @@ struct parse_result { int flags; struct bgpd_addr addr; u_int8_t prefixlen; - struct as_filter as; + struct filter_as as; }; struct parse_result *parse(int, char *[]); |