aboutsummaryrefslogtreecommitdiff
path: root/cftoken.l
diff options
context:
space:
mode:
authorSUZUKI, Shinsuke <suz@kame.net>2006-10-01 08:03:22 +0000
committerBjørn Mork <bjorn@mork.no>2010-08-06 15:37:36 +0200
commit4220cf7c6979972adfb231e5851b667eea588b19 (patch)
treea3d0a15758c8c87f679a326ad6d5ac67beb51183 /cftoken.l
parent64409da835edb8005a8e112b94c290b57603ce1b (diff)
supported a declaration name (hostname, poolname, keyname, authname) including "-". (Bug-ID 1566476)
Diffstat (limited to 'cftoken.l')
-rw-r--r--cftoken.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/cftoken.l b/cftoken.l
index 12487de..0bdbca2 100644
--- a/cftoken.l
+++ b/cftoken.l
@@ -96,7 +96,7 @@ comma ,
comment \#.*
semi \;
quotedstring \"[^\"]*\"
-string [a-zA-Z0-9:\._][a-zA-Z0-9:\._]*
+string [a-zA-Z0-9:\._\-][a-zA-Z0-9:\._\-]*
digit [0-9]
integer {digit}+
number {integer}|({digit}*\.{integer})