diff options
author | 2015-01-16 14:36:44 +0000 | |
---|---|---|
committer | 2015-01-16 14:36:44 +0000 | |
commit | a987786f84bce3844f57a3ca87cbf6f50340c774 (patch) | |
tree | e3f5d3418de7b20a6962b35845432d1890b49692 | |
parent | The SSL/TLS session Id context is limited to 32 bytes. Instead of (diff) | |
download | wireguard-openbsd-a987786f84bce3844f57a3ca87cbf6f50340c774.tar.xz wireguard-openbsd-a987786f84bce3844f57a3ca87cbf6f50340c774.zip |
Replace <sys/param.h> with <limits.h>
millert spotted the accidental <ctype.h> removal that caused binary change.
-rw-r--r-- | usr.sbin/lpr/pac/pac.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/lpr/pac/pac.c b/usr.sbin/lpr/pac/pac.c index 27b6aa40cc4..bf48b9dae11 100644 --- a/usr.sbin/lpr/pac/pac.c +++ b/usr.sbin/lpr/pac/pac.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pac.c,v 1.22 2014/11/18 20:54:28 krw Exp $ */ +/* $OpenBSD: pac.c,v 1.23 2015/01/16 14:36:44 deraadt Exp $ */ /* $NetBSD: pac.c,v 1.14 2000/04/27 13:40:18 msaitoh Exp $ */ /* @@ -38,14 +38,14 @@ * to print the usage information for the named people. */ -#include <sys/param.h> - #include <ctype.h> +#include <signal.h> #include <dirent.h> #include <err.h> #include <errno.h> #include <stdlib.h> #include <unistd.h> +#include <limits.h> #include <stdio.h> #include <string.h> |