From ddebc6f6790c1ad5d8adccd5a4370c4757b19d08 Mon Sep 17 00:00:00 2001 From: claudio Date: Fri, 7 Sep 2018 05:44:58 +0000 Subject: [PATCH] Add a dummy as_set_match() function since it is needed to link util.c now. --- usr.sbin/bgpctl/bgpctl.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 @@ -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); +} -- 2.20.1