Skip to content

Commit

Permalink
fixed <normal> character class
Browse files Browse the repository at this point in the history
  • Loading branch information
dwarring committed Sep 3, 2014
1 parent f4aa062 commit 81ba84d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/LDAP/Search/Grammar.pm
Expand Up @@ -32,7 +32,7 @@ grammar LDAP::Search::Grammar {
rule matchingrule { ':'<!before '='> <oid> }
token oid { ['.'|<digit>]+ | <alpha>+}
rule value { [<normal>|<escaped>]+ }
token normal { <- [ \x00 '(' ')' '*' \\ ]> }
token normal { <- [ \x00 \( \) \* \\ ]> }
token escaped { \\ <xdigit> <xdigit> }
}

0 comments on commit 81ba84d

Please sign in to comment.