diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2018-09-07 05:44:59 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2018-09-07 05:44:59 +0000 |
commit | 3d2985f36f5311a4a80b5df767a72509cc95331a (patch) | |
tree | 15d68fb132111c82f153f74954794fbf795428eb /usr.sbin/bgpctl | |
parent | ae9a4d385acb942df3b17ec97f7295d2e6106b3f (diff) |
Add a dummy as_set_match() function since it is needed to link util.c now.
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); +} |