aboutsummaryrefslogtreecommitdiff
path: root/httpd/patterns.c
diff options
context:
space:
mode:
Diffstat (limited to 'httpd/patterns.c')
-rw-r--r--httpd/patterns.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/httpd/patterns.c b/httpd/patterns.c
index 61f6ab8..3b2cbcc 100644
--- a/httpd/patterns.c
+++ b/httpd/patterns.c
@@ -1,4 +1,4 @@
-/* $OpenBSD$ */
+/* $OpenBSD: patterns.c,v 1.2 2015/06/23 15:35:20 semarie Exp $ */
/*
* Copyright (c) 2015 Reyk Floeter <reyk@openbsd.org>
@@ -26,7 +26,7 @@
/*
* Derived from Lua 5.3.1:
- * $Id: lstrlib.c,v 1.229 2015/05/20 17:39:23 roberto Exp $
+ * $Id: patterns.c,v 1.2 2015/06/23 15:35:20 semarie Exp $
* Standard library for string operations and pattern-matching
*/
@@ -156,9 +156,6 @@ match_class(int c, int cl)
case 'x':
res = isxdigit(c);
break;
- case 'z':
- res = (c == 0);
- break; /* deprecated option */
default:
return (cl == c);
}