commit 774f9f6653a90d83a8b5802e7dd210a45603e039
Author: Christos Zoulas <christos@zoulas.com>
Date: Fri Jan 25 23:07:19 2013 +0000
bump mime desc
diff --git a/src/file.h b/src/file.h
index 8e139fc..4c03766 100644
@@ -128,12 +128,13 @@
#endif
#define MAXMAGIS 8192 /* max entries in any one magic file
or directory */
-#define MAXDESC 64 /* max leng of text description/MIME type */
-#define MAXstring 64 /* max leng of "string" types */
+#define MAXDESC 64 /* max len of text description/MIME type */
+#define MAXMIME 80 /* max len of text MIME type */
+#define MAXstring 64 /* max len of "string" types */
#define MAGICNO 0xF11E041C
-#define VERSIONNO 9
-#define FILE_MAGICSIZE 232
+#define VERSIONNO 10
+#define FILE_MAGICSIZE 248
#define FILE_LOAD 0
#define FILE_CHECK 1
@@ -300,9 +301,9 @@ struct magic {
union VALUETYPE value; /* either number or string */
/* Words 17-32 */
char desc[MAXDESC]; /* description */
- /* Words 33-48 */
- char mimetype[MAXDESC]; /* MIME type */
- /* Words 49-50 */
+ /* Words 33-52 */
+ char mimetype[MAXMIME]; /* MIME type */
+ /* Words 53-54 */
char apple[8];
};