]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
The debug strings table for mime type operations was out of sync with the
authorMichael R Sweet <michaelrsweet@gmail.com>
Thu, 24 Mar 2016 21:59:09 +0000 (17:59 -0400)
committerMichael R Sweet <michaelrsweet@gmail.com>
Thu, 24 Mar 2016 21:59:09 +0000 (17:59 -0400)
enumeration (PR #4787)

scheduler/type.c

index 5300d7e7d6981316fbb84946e05b6698047c2ea6..9cb01299207d60372b0872ea57f06dbe0044105b 100644 (file)
@@ -1,9 +1,7 @@
 /*
- * "$Id$"
- *
  * MIME typing routines for CUPS.
  *
- * Copyright 2007-2015 by Apple Inc.
+ * Copyright 2007-2016 by Apple Inc.
  * Copyright 1997-2006 by Easy Software Products, all rights reserved.
  *
  * These coded instructions, statements, and computer programs are the
@@ -65,7 +63,8 @@ static const char * const debug_ops[] =
                  "INT",                /* Integer/32-bit word matches */
                  "LOCALE",             /* Current locale matches string */
                  "CONTAINS",           /* File contains a string */
-                 "ISTRING"             /* Case-insensitive string matches */
+                 "ISTRING",            /* Case-insensitive string matches */
+                 "REGEX"               /* Regular expression matches */
                };
 #endif /* DEBUG */
 
@@ -1276,8 +1275,3 @@ mime_patmatch(const char *s,              /* I - String to match against */
 
   return (*s == *pat);
 }
-
-
-/*
- * End of "$Id$".
- */