summaryrefslogtreecommitdiff
path: root/epan/dtd_parse.l
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2006-07-26 22:54:48 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2006-07-26 22:54:48 +0000
commita472c767a2193277f0f91215776137171867d552 (patch)
tree3ec899b666fb0c794ee4bb76a224f7d8757cf1f0 /epan/dtd_parse.l
parent7f6aa2359e9771e0021f1544b2a386c7068aebce (diff)
downloadwireshark-a472c767a2193277f0f91215776137171867d552.tar.gz
a better regex for names in DTDs
svn path=/trunk/; revision=18795
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 dffb2f1db1..91830a4956 100644
--- a/epan/dtd_parse.l
+++ b/epan/dtd_parse.l
@@ -147,7 +147,7 @@ comma ","
pipe "|"
dquote ["]
-name [A-Za-z][-a-z0-9_][-a-zA-Z0-9_]*
+name [A-Za-z][-a-zA-Z0-9_]*
dquoted ["][^\"]*["]
squoted ['][^\']*[']