summaryrefslogtreecommitdiff
path: root/usr.bin/file
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2015-01-16 18:08:16 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2015-01-16 18:08:16 +0000
commit4f066bb63a3ae9a5d561986071abd505ce8663e6 (patch)
tree9d14f2323fd69ee987af2f06e6d695dfff617b1b /usr.bin/file
parent26df6e461e9e1933637bf8071f8e5a8ffc813cce (diff)
Add missing <limits.h> to file.c and remove definition of PATH_MAX
which masked the missing include. OK deraadt@
Diffstat (limited to 'usr.bin/file')
-rw-r--r--usr.bin/file/apprentice.c6
-rw-r--r--usr.bin/file/file.c7
2 files changed, 3 insertions, 10 deletions
diff --git a/usr.bin/file/apprentice.c b/usr.bin/file/apprentice.c
index 1c6a49e96e6..295c899abf4 100644
--- a/usr.bin/file/apprentice.c
+++ b/usr.bin/file/apprentice.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: apprentice.c,v 1.33 2015/01/16 08:24:04 doug Exp $ */
+/* $OpenBSD: apprentice.c,v 1.34 2015/01/16 18:08:15 millert Exp $ */
/*
* Copyright (c) Ian F. Darwin 1986-1995.
* Software written by Ian F. Darwin and others;
@@ -73,10 +73,6 @@
#define MAP_FILE 0
#endif
-#ifndef PATH_MAX
-#define PATH_MAX 1024
-#endif
-
struct magic_entry {
struct magic *mp;
uint32_t cont_count;
diff --git a/usr.bin/file/file.c b/usr.bin/file/file.c
index 310bce7b15d..fcd6c34cd5f 100644
--- a/usr.bin/file/file.c
+++ b/usr.bin/file/file.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: file.c,v 1.25 2015/01/16 08:24:04 doug Exp $ */
+/* $OpenBSD: file.c,v 1.26 2015/01/16 18:08:15 millert Exp $ */
/*
* Copyright (c) Ian F. Darwin 1986-1995.
* Software written by Ian F. Darwin and others;
@@ -39,6 +39,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
+#include <limits.h>
#include <string.h>
#ifdef RESTORE_TIME
# if (__COHERENT__ >= 0x420)
@@ -80,10 +81,6 @@ int getopt_long(int argc, char * const *argv, const char *optstring, const struc
# define USAGE "Usage: %s [-bcik" SYMLINKFLAG "nNprsvz0] [-e test] [-f namefile] [-F separator] [-m magicfiles] file...\n" \
" %s -C -m magicfiles\n"
-#ifndef PATH_MAX
-#define PATH_MAX 1024
-#endif
-
private int /* Global command-line options */
bflag = 0, /* brief output format */
nopad = 0, /* Don't pad output */