]> granicus.if.org Git - file/commitdiff
define MAXPATHLEN if not defined.
authorChristos Zoulas <christos@zoulas.com>
Thu, 24 Feb 2011 03:35:37 +0000 (03:35 +0000)
committerChristos Zoulas <christos@zoulas.com>
Thu, 24 Feb 2011 03:35:37 +0000 (03:35 +0000)
src/magic.c

index 7064a3999cbf3825b29d09c423a3738e540660ad..c7c1df76cef4ffd147c1245e92687817e640cfdc 100644 (file)
@@ -33,7 +33,7 @@
 #include "file.h"
 
 #ifndef        lint
-FILE_RCSID("@(#)$File: magic.c,v 1.69 2010/09/20 14:14:49 christos Exp $")
+FILE_RCSID("@(#)$File: magic.c,v 1.70 2011/01/21 18:59:40 christos Exp $")
 #endif /* lint */
 
 #include "magic.h"
@@ -73,6 +73,10 @@ FILE_RCSID("@(#)$File: magic.c,v 1.69 2010/09/20 14:14:49 christos Exp $")
 #endif
 #endif
 
+#ifndef MAXPATHLEN
+#define MAXPATHLEN 1024
+#endif
+
 private void free_mlist(struct mlist *);
 private void close_and_restore(const struct magic_set *, const char *, int,
     const struct stat *);