artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f2e7dc0
)
Do not ignore the AF_LINK entries of carp(4) interfaces.
author
gerhard
<gerhard@openbsd.org>
Fri, 14 Jul 2023 07:09:00 +0000
(07:09 +0000)
committer
gerhard
<gerhard@openbsd.org>
Fri, 14 Jul 2023 07:09:00 +0000
(07:09 +0000)
OK kn@
usr.sbin/dhcrelay6/dispatch.c
patch
|
blob
|
history
diff --git
a/usr.sbin/dhcrelay6/dispatch.c
b/usr.sbin/dhcrelay6/dispatch.c
index
06aba33
..
0b9ea23
100644
(file)
--- a/
usr.sbin/dhcrelay6/dispatch.c
+++ b/
usr.sbin/dhcrelay6/dispatch.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: dispatch.c,v 1.
2 2021/01/17 13:41:24 claudio
Exp $ */
+/* $OpenBSD: dispatch.c,v 1.
3 2023/07/14 07:09:00 gerhard
Exp $ */
/*
* Copyright 2004 Henning Brauer <henning@openbsd.org>
@@
-168,7
+168,8
@@
setup_iflist(void)
/* Skip non ethernet interfaces. */
if (ifi->ifi_type != IFT_ETHER &&
- ifi->ifi_type != IFT_ENC) {
+ ifi->ifi_type != IFT_ENC &&
+ ifi->ifi_type != IFT_CARP) {
TAILQ_REMOVE(&intflist, intf, entry);
free(intf);
continue;