summaryrefslogtreecommitdiff
path: root/scheduler/type.c
diff options
context:
space:
mode:
authorMichael R Sweet <michaelrsweet@gmail.com>2016-03-24 17:59:09 -0400
committerMichael R Sweet <michaelrsweet@gmail.com>2016-03-24 17:59:09 -0400
commit508de6790c28558456f54f780ea2b6b46afed9dd (patch)
treefefa95ad287efa5f87e3237ddc062f523f977ec6 /scheduler/type.c
parentf73476aed9d81290a8f6301840f57d8dde4949e5 (diff)
downloadcups-508de6790c28558456f54f780ea2b6b46afed9dd.tar.gz
The debug strings table for mime type operations was out of sync with the
enumeration (PR #4787)
Diffstat (limited to 'scheduler/type.c')
-rw-r--r--scheduler/type.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/scheduler/type.c b/scheduler/type.c
index 5300d7e7d..9cb012992 100644
--- a/scheduler/type.c
+++ b/scheduler/type.c
@@ -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$".
- */