summaryrefslogtreecommitdiff
path: root/src/file.h
diff options
context:
space:
mode:
authorChristos Zoulas <christos@zoulas.com>2020-03-19 20:41:11 +0000
committerChristos Zoulas <christos@zoulas.com>2020-03-19 20:41:11 +0000
commitdf476c81d3e4171ec5d68fb259108ba875ae2caa (patch)
tree859efd801260d602b91404ac40ea74fdb3e68f36 /src/file.h
parent2ca292bcdf217bfddeeeaad1adc38c716ffab181 (diff)
downloadfile-git-df476c81d3e4171ec5d68fb259108ba875ae2caa.tar.gz
- change default for name/use to 50
- update code to print the current parameters so that they don't end up out of date.
Diffstat (limited to 'src/file.h')
-rw-r--r--src/file.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/file.h b/src/file.h
index 3021fb32..16cdda55 100644
--- a/src/file.h
+++ b/src/file.h
@@ -27,7 +27,7 @@
*/
/*
* file.h - definitions for file(1) program
- * @(#)$File: file.h,v 1.213 2020/03/08 21:30:06 christos Exp $
+ * @(#)$File: file.h,v 1.214 2020/03/19 20:41:11 christos Exp $
*/
#ifndef __file_h__
@@ -130,9 +130,6 @@
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif
-#ifndef FILE_BYTES_MAX
-# define FILE_BYTES_MAX (1024 * 1024) /* how much of the file to look at */
-#endif
#define FILE_BADSIZE CAST(size_t, ~0ul)
#define MAXMAGIS 8192 /* max entries in any one magic file
or directory */
@@ -442,11 +439,14 @@ struct magic_set {
uint16_t elf_notes_max;
uint16_t regex_max;
size_t bytes_max; /* number of bytes to read from file */
-#define FILE_INDIR_MAX 50
-#define FILE_NAME_MAX 30
-#define FILE_ELF_SHNUM_MAX 32768
-#define FILE_ELF_PHNUM_MAX 2048
+#ifndef FILE_BYTES_MAX
+# define FILE_BYTES_MAX (1024 * 1024) /* how much of the file to look at */
+#endif
#define FILE_ELF_NOTES_MAX 256
+#define FILE_ELF_PHNUM_MAX 2048
+#define FILE_ELF_SHNUM_MAX 32768
+#define FILE_INDIR_MAX 50
+#define FILE_NAME_MAX 50
#define FILE_REGEX_MAX 8192
};