diff options
author | 2004-04-13 21:48:15 +0000 | |
---|---|---|
committer | 2004-04-13 21:48:15 +0000 | |
commit | 65a599002d01e96b359b62884267bcecd7e8d89e (patch) | |
tree | 831b844963b72a7cfce0d5824aad238f4e9897e8 | |
parent | unfortunately we have to wait a little if the nic does not have a link and (diff) | |
download | wireguard-openbsd-65a599002d01e96b359b62884267bcecd7e8d89e.tar.xz wireguard-openbsd-65a599002d01e96b359b62884267bcecd7e8d89e.zip |
Add missing #include. Found by Stefan Paletta.
ok henning@ ho@
-rw-r--r-- | sbin/isakmpd/if.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/isakmpd/if.c b/sbin/isakmpd/if.c index ab67ae42f01..ab6cd66bcc2 100644 --- a/sbin/isakmpd/if.c +++ b/sbin/isakmpd/if.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if.c,v 1.17 2004/03/19 14:04:43 hshoexer Exp $ */ +/* $OpenBSD: if.c,v 1.18 2004/04/13 21:48:15 hshoexer Exp $ */ /* $EOM: if.c,v 1.12 1999/10/01 13:45:20 niklas Exp $ */ /* @@ -42,6 +42,7 @@ #include "sysdep.h" #include "log.h" +#include "monitor.h" #include "if.h" #ifndef HAVE_GETIFADDRS |