#
# Remember if we did begin-vendor.
#
- if (/^BEGIN-VENDOR\s+([\w-]+)/) {
+ if (/^BEGIN-VENDOR\s+([-\w]+)/) {
$begin_vendor = 1;
if (!defined $vendor) {
$vendor = $1;
#
# Get attribute.
#
- if (/^ATTRIBUTE\s+([\w-]+)\s+([\w.]+)\s+(\w+)(.*)/) {
+ if (/^ATTRIBUTE\s+([-\w]+)\s+([\w.]+)\s+(\w+)(.*)/) {
$name=$1;
$len = length $name;
if ($len < 40) {
#
# Values.
#
- if (/^VALUE\s+([\w-]+)\s+([\w-\/,.]+)\s+(\w+)(.*)/) {
+ if (/^VALUE\s+([-\w]+)\s+([-\w\/,.]+)\s+(\w+)(.*)/) {
$attr=$1;
$len = length $attr;
if ($len < 32) {