diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2005-10-26 01:28:42 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2005-10-26 01:28:42 +0000 |
commit | 4024c3011e899d148825738ca48a96a80af5af00 (patch) | |
tree | 239f15049bbe2736b722e02c47646b7a51fd358f /usr.sbin/ospfd | |
parent | b751da7572d51540a35410f004c5b56dc2ce10d8 (diff) |
some unneeded #includes; ok claudio@
Diffstat (limited to 'usr.sbin/ospfd')
-rw-r--r-- | usr.sbin/ospfd/packet.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.sbin/ospfd/packet.c b/usr.sbin/ospfd/packet.c index 248b87de0f8..d73ab83af7e 100644 --- a/usr.sbin/ospfd/packet.c +++ b/usr.sbin/ospfd/packet.c @@ -1,4 +1,4 @@ -/* $OpenBSD: packet.c,v 1.16 2005/10/19 22:00:37 stevesk Exp $ */ +/* $OpenBSD: packet.c,v 1.17 2005/10/26 01:28:41 stevesk Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -18,7 +18,6 @@ #include <sys/types.h> #include <sys/socket.h> -#include <sys/time.h> #include <netinet/in.h> #include <netinet/in_systm.h> @@ -27,7 +26,6 @@ #include <errno.h> #include <event.h> -#include <md5.h> #include <stdlib.h> #include <string.h> @@ -302,6 +300,5 @@ find_iface(struct ospfd_conf *xconf, struct in_addr src) return (iface); } - return (NULL); } |