diff options
author | 2013-08-19 11:20:57 +0000 | |
---|---|---|
committer | 2013-08-19 11:20:57 +0000 | |
commit | cd54a64c08e7828c20005cd4937d9f02e21ab542 (patch) | |
tree | bef06508d097d32f8ed5423c7e162019ac37d635 | |
parent | in pf_test_rule, when dealing with a match rule, obey the match rule's quick (diff) | |
download | wireguard-openbsd-cd54a64c08e7828c20005cd4937d9f02e21ab542.tar.xz wireguard-openbsd-cd54a64c08e7828c20005cd4937d9f02e21ab542.zip |
Add missing util.h
ok otto@ mpi@ mikeb@
-rw-r--r-- | sbin/ifconfig/ifconfig.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/ifconfig/ifconfig.c b/sbin/ifconfig/ifconfig.c index 21a924f2b74..da03a752093 100644 --- a/sbin/ifconfig/ifconfig.c +++ b/sbin/ifconfig/ifconfig.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ifconfig.c,v 1.268 2013/08/16 12:29:17 mpi Exp $ */ +/* $OpenBSD: ifconfig.c,v 1.269 2013/08/19 11:20:57 dcoppa Exp $ */ /* $NetBSD: ifconfig.c,v 1.40 1997/10/01 02:19:43 enami Exp $ */ /* @@ -100,6 +100,7 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> +#include <util.h> #include <ifaddrs.h> #include "brconfig.h" |