diff options
author | 2005-03-11 12:26:50 +0000 | |
---|---|---|
committer | 2005-03-11 12:26:50 +0000 | |
commit | 63d0c3c8f4c80966a0b7cd29279b58ccffd44d3f (patch) | |
tree | fbf93f889647fb06eff82163d4771168a11ce0b2 | |
parent | cleaner paths (diff) | |
download | wireguard-openbsd-63d0c3c8f4c80966a0b7cd29279b58ccffd44d3f.tar.xz wireguard-openbsd-63d0c3c8f4c80966a0b7cd29279b58ccffd44d3f.zip |
KNF
-rw-r--r-- | usr.sbin/ospfd/interface.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/ospfd/interface.c b/usr.sbin/ospfd/interface.c index b5591c8a456..76677fb477e 100644 --- a/usr.sbin/ospfd/interface.c +++ b/usr.sbin/ospfd/interface.c @@ -1,4 +1,4 @@ -/* $OpenBSD: interface.c,v 1.10 2005/03/07 10:28:14 claudio Exp $ */ +/* $OpenBSD: interface.c,v 1.11 2005/03/11 12:26:50 henning Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -178,7 +178,6 @@ if_new(struct kif *kif) if ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0) err(1, "if_new: socket"); - /* get type */ if ((kif->flags & IFF_POINTOPOINT)) iface->type = IF_TYPE_POINTOPOINT; |