summary refs log tree commit diff
path: root/util.c
diff options
context:
space:
mode:
authorokan <okan>2015-01-19 14:54:16 +0000
committerokan <okan>2015-01-19 14:54:16 +0000
commit7936b9b2a7c7c3cc06d3fb60c22ed535b610cd63 (patch)
tree9bb4f55aee479f2aa360ccc1dc07946b17ad09c5 /util.c
parentc412f040df05c7221537a598786e0cea4b35167f (diff)
downloadcwm-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 'util.c')
-rw-r--r--util.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/util.c b/util.c
index f69f880..0b10795 100644
--- a/util.c
+++ b/util.c
@@ -18,11 +18,12 @@
  * $OpenBSD$
  */
 
-#include <sys/param.h>
+#include <sys/types.h>
 #include <sys/queue.h>
 
 #include <err.h>
 #include <errno.h>
+#include <limits.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>