summaryrefslogtreecommitdiff
path: root/epan/dtd_parse.l
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2006-07-20 17:23:58 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2006-07-20 17:23:58 +0000
commitba3a83a475cd83e44415c35e05a77c68701aac6f (patch)
tree5f2c5d94bb8b893b7f8123b590d74e2cc4dbe84e /epan/dtd_parse.l
parent40cd131dfb81b33c40565e2473868c30bd5f8c0d (diff)
downloadwireshark-ba3a83a475cd83e44415c35e05a77c68701aac6f.tar.gz
allow for some uppercasing in names.
"fix" for Bug 1010 svn path=/trunk/; revision=18773
Diffstat (limited to 'epan/dtd_parse.l')
-rw-r--r--epan/dtd_parse.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dtd_parse.l b/epan/dtd_parse.l
index 24fe042ad8..dffb2f1db1 100644
--- a/epan/dtd_parse.l
+++ b/epan/dtd_parse.l
@@ -147,7 +147,7 @@ comma ","
pipe "|"
dquote ["]
-name [a-z][-a-zA-Z0-9_]*
+name [A-Za-z][-a-z0-9_][-a-zA-Z0-9_]*
dquoted ["][^\"]*["]
squoted ['][^\']*[']