]> granicus.if.org Git - file/commitdiff
Fix rcsid; reformat long warning.
authorIan Darwin <ian@darwinsys.com>
Wed, 16 Sep 1987 14:43:52 +0000 (14:43 +0000)
committerIan Darwin <ian@darwinsys.com>
Wed, 16 Sep 1987 14:43:52 +0000 (14:43 +0000)
src/apprentice.c

index 3c5263543be0eff744b2294594278105ed923518..9a654e258b5a597cd055b61a57b9d306ecebd5c9 100644 (file)
 #include "file.h"
 
 #ifndef        lint
-static char *moduleid = "$Header: /home/glen/git/file/cvs/file/src/apprentice.c,v 1.6 1987/09/16 10:11:06 ian Exp $";
+static char *moduleid = 
+       "@(#)$Header: /home/glen/git/file/cvs/file/src/apprentice.c,v 1.7 1987/09/16 14:43:52 ian Exp $";
 #endif /* lint */
 
 #define MAXSTR         500
 #define        EATAB {while (isascii(*l) && isspace(*l))  ++l;}
 
-
 extern char *progname;
 extern char *magicfile;
 extern int debug;              /* option */
@@ -88,9 +88,14 @@ int *ndx, check;
        static int warned = 0;
        struct magic *m;
 
+       /*
+        * TODO malloc the magic structures (linked list?) so this can't happen
+        */
        if (nd+1 >= MAXMAGIS){
                if (warned++ == 0)
-                       warning("magic table overflow - increase MAXMAGIS beyond %d in file/apprentice.c\n", MAXMAGIS);
+                       warning(
+"magic table overflow - increase MAXMAGIS beyond %d in file/apprentice.c\n",
+                       MAXMAGIS);
                return 0;
        }
        m = &magic[*ndx];