summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bgpctl/bgpctl.c
diff options
context:
space:
mode:
authorclaudio <claudio@openbsd.org>2018-09-14 10:22:55 +0000
committerclaudio <claudio@openbsd.org>2018-09-14 10:22:55 +0000
commit9988b6076ec983a41eab262411d0b6fa48bd49c8 (patch)
tree230915b8936162cbabc1bc8dc4c12d2020c6a95e /usr.sbin/bgpctl/bgpctl.c
parentExtend as_set to allow for different sized objects to be added. The only (diff)
downloadwireguard-openbsd-9988b6076ec983a41eab262411d0b6fa48bd49c8.tar.xz
wireguard-openbsd-9988b6076ec983a41eab262411d0b6fa48bd49c8.zip
Adjust the dummy as_set_match function to new prototype after last bgpd commit
OK benno@
Diffstat (limited to 'usr.sbin/bgpctl/bgpctl.c')
-rw-r--r--usr.sbin/bgpctl/bgpctl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bgpctl/bgpctl.c b/usr.sbin/bgpctl/bgpctl.c
index c4a2ddee600..924007ee6b2 100644
--- a/usr.sbin/bgpctl/bgpctl.c
+++ b/usr.sbin/bgpctl/bgpctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bgpctl.c,v 1.215 2018/09/09 12:53:41 benno Exp $ */
+/* $OpenBSD: bgpctl.c,v 1.216 2018/09/14 10:22:55 claudio Exp $ */
/*
* Copyright (c) 2003 Henning Brauer <henning@openbsd.org>
@@ -2656,8 +2656,8 @@ msg_type(u_int8_t type)
return (msgtypenames[type]);
}
-int
+void *
as_set_match(const struct as_set *a, u_int32_t asnum)
{
- return (0);
+ return (NULL);
}