diff options
Diffstat (limited to 'usr.sbin/bgpctl')
-rw-r--r-- | usr.sbin/bgpctl/bgpctl.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.sbin/bgpctl/bgpctl.c b/usr.sbin/bgpctl/bgpctl.c index 70daace1ffd..2ef074af7f1 100644 --- a/usr.sbin/bgpctl/bgpctl.c +++ b/usr.sbin/bgpctl/bgpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpctl.c,v 1.213 2018/09/06 18:38:06 claudio Exp $ */ +/* $OpenBSD: bgpctl.c,v 1.214 2018/09/07 05:44:58 claudio Exp $ */ /* * Copyright (c) 2003 Henning Brauer <henning@openbsd.org> @@ -2655,3 +2655,9 @@ msg_type(u_int8_t type) return "BAD"; return (msgtypenames[type]); } + +int +as_set_match(const struct as_set *a, u_int32_t asnum) +{ + return (0); +} |