diff options
| author | 2015-01-16 00:05:12 +0000 | |
|---|---|---|
| committer | 2015-01-16 00:05:12 +0000 | |
| commit | 9b2ea7723bfa098cdd2496e40640166ae7e29611 (patch) | |
| tree | a1440ae38f2afce4271e1777f587931fcddfa91d /usr.sbin/installboot/bootstrap.c | |
| parent | first batch of programs adapting to the namespace cleanup (diff) | |
| download | wireguard-openbsd-9b2ea7723bfa098cdd2496e40640166ae7e29611.tar.xz wireguard-openbsd-9b2ea7723bfa098cdd2496e40640166ae7e29611.zip | |
first batch of cleanup to programs based upon the namespace cleanups
in net/pfvar.h sys/proc.h sys/ucred.h arpa/nameser.h
change to PATH_MAX, reduce use of MIN() and MAX(), HOST_NAME_MAX+1,
LOGIN_NAME_MAX, etc etc
ok millert guenther, some review by doug
Diffstat (limited to 'usr.sbin/installboot/bootstrap.c')
| -rw-r--r-- | usr.sbin/installboot/bootstrap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/installboot/bootstrap.c b/usr.sbin/installboot/bootstrap.c index 5ad473e8b50..c2c6ec3cd01 100644 --- a/usr.sbin/installboot/bootstrap.c +++ b/usr.sbin/installboot/bootstrap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bootstrap.c,v 1.5 2014/06/25 18:23:02 tobias Exp $ */ +/* $OpenBSD: bootstrap.c,v 1.6 2015/01/16 00:05:12 deraadt Exp $ */ /* * Copyright (c) 2013 Joel Sing <jsing@openbsd.org> @@ -16,7 +16,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include <sys/param.h> +#include <sys/param.h> /* DEV_BSIZE */ #include <sys/disklabel.h> #include <sys/dkio.h> #include <sys/ioctl.h> |
