File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 41
41
* Patched filter syntax to support octal \XX codes. Thanks to Kouhei Sutou
42
42
for the patch.
43
43
* Applied an additional patch from Kouhei.
44
+ * Allowed comma in filter strings, suggested by Kouhei.
44
45
45
46
== Net::LDAP 0.0.4: August 15, 2006
46
47
* Undeprecated Net::LDAP#modify. Thanks to Justin Forder for
Original file line number Diff line number Diff line change @@ -471,7 +471,7 @@ def parse_filter_branch scanner
471
471
scanner . scan ( /\s */ )
472
472
#if value = scanner.scan( /[\w\*\.]+/ ) (ORG)
473
473
#if value = scanner.scan( /[\w\*\.\+\-@=#\$%&! ]+/ ) (ff suggested by Kouhei Sutou
474
- if value = scanner . scan ( /(?:[\w \* \. \+ \- @=#\$ %&! ]|\\ [a-fA-F\d ]{2,2})+/ )
474
+ if value = scanner . scan ( /(?:[\w \* \. \+ \- @=, #\$ %&! ]|\\ [a-fA-F\d ]{2,2})+/ )
475
475
case op
476
476
when "="
477
477
Filter . eq ( token , value )
You can’t perform that action at this time.
0 commit comments