Add missing <limits.h> to file.c and remove definition of PATH_MAX
authormillert <millert@openbsd.org>
Fri, 16 Jan 2015 18:08:15 +0000 (18:08 +0000)
committermillert <millert@openbsd.org>
Fri, 16 Jan 2015 18:08:15 +0000 (18:08 +0000)
which masked the missing include.  OK deraadt@

usr.bin/file/apprentice.c
usr.bin/file/file.c

index 1c6a49e..295c899 100644 (file)
@@ -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;
 #define MAP_FILE 0
 #endif
 
-#ifndef PATH_MAX
-#define PATH_MAX       1024
-#endif
-
 struct magic_entry {
        struct magic *mp;       
        uint32_t cont_count;
index 310bce7..fcd6c34 100644 (file)
@@ -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                     */