artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a8e18e8
)
Add a dummy as_set_match() function since it is needed to link util.c now.
author
claudio
<claudio@openbsd.org>
Fri, 7 Sep 2018 05:44:58 +0000
(
05:44
+0000)
committer
claudio
<claudio@openbsd.org>
Fri, 7 Sep 2018 05:44:58 +0000
(
05:44
+0000)
usr.sbin/bgpctl/bgpctl.c
patch
|
blob
|
history
diff --git
a/usr.sbin/bgpctl/bgpctl.c
b/usr.sbin/bgpctl/bgpctl.c
index
70daace
..
2ef074a
100644
(file)
--- a/
usr.sbin/bgpctl/bgpctl.c
+++ b/
usr.sbin/bgpctl/bgpctl.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: bgpctl.c,v 1.21
3 2018/09/06 18:38:06
claudio Exp $ */
+/* $OpenBSD: bgpctl.c,v 1.21
4 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);
+}