Add a dummy as_set_match() function since it is needed to link util.c now.
authorclaudio <claudio@openbsd.org>
Fri, 7 Sep 2018 05:44:58 +0000 (05:44 +0000)
committerclaudio <claudio@openbsd.org>
Fri, 7 Sep 2018 05:44:58 +0000 (05:44 +0000)
usr.sbin/bgpctl/bgpctl.c

index 70daace..2ef074a 100644 (file)
@@ -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);
+}