diff options
author | okan <okan> | 2015-01-19 14:54:16 +0000 |
---|---|---|
committer | okan <okan> | 2015-01-19 14:54:16 +0000 |
commit | 7936b9b2a7c7c3cc06d3fb60c22ed535b610cd63 (patch) | |
tree | 9bb4f55aee479f2aa360ccc1dc07946b17ad09c5 /conf.c | |
parent | c412f040df05c7221537a598786e0cea4b35167f (diff) | |
download | cwm-7936b9b2a7c7c3cc06d3fb60c22ed535b610cd63.tar.gz cwm-7936b9b2a7c7c3cc06d3fb60c22ed535b610cd63.tar.xz cwm-7936b9b2a7c7c3cc06d3fb60c22ed535b610cd63.zip |
Switch to limits.h; replace MAXPATHLEN and MAXHOSTNAMELEN with PATH_MAX
and HOST_NAME_MAX+1, respectively. ok doug@
Diffstat (limited to 'conf.c')
-rw-r--r-- | conf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/conf.c b/conf.c index 181bf09..8eec4a3 100644 --- a/conf.c +++ b/conf.c @@ -18,12 +18,13 @@ * $OpenBSD$ */ -#include <sys/param.h> +#include <sys/types.h> #include <sys/queue.h> #include <sys/stat.h> #include <err.h> #include <errno.h> +#include <limits.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |