summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ospfd
diff options
context:
space:
mode:
authorremi <remi@openbsd.org>2019-04-23 06:18:02 +0000
committerremi <remi@openbsd.org>2019-04-23 06:18:02 +0000
commit0cb88486b113a6a00771c8e0916afe325b0dec53 (patch)
tree0d7607153be79e80056f708327cdbf3bc146861e /usr.sbin/ospfd
parentUse the network address instead of the interface address for the "link id" (diff)
downloadwireguard-openbsd-0cb88486b113a6a00771c8e0916afe325b0dec53.tar.xz
wireguard-openbsd-0cb88486b113a6a00771c8e0916afe325b0dec53.zip
whitespace fix
Diffstat (limited to 'usr.sbin/ospfd')
-rw-r--r--usr.sbin/ospfd/ospfe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospfd/ospfe.c b/usr.sbin/ospfd/ospfe.c
index d17c5ef09d5..9522e5f3b7c 100644
--- a/usr.sbin/ospfd/ospfe.c
+++ b/usr.sbin/ospfd/ospfe.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ospfe.c,v 1.105 2019/04/23 06:15:14 remi Exp $ */
+/* $OpenBSD: ospfe.c,v 1.106 2019/04/23 06:18:02 remi Exp $ */
/*
* Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org>
@@ -900,7 +900,7 @@ orig_rtr_lsa(struct area *area)
if (ibuf_add(buf, &rtr_link, sizeof(rtr_link)))
fatalx("orig_rtr_lsa: ibuf_add failed");
}
- if ((iface->flags & IFF_UP) &&
+ if ((iface->flags & IFF_UP) &&
LINK_STATE_IS_UP(iface->linkstate)) {
log_debug("orig_rtr_lsa: stub net, "
"interface %s", iface->name);