Merge pull request #5 from SattaiLanfear/master

Interfaces can be named almost anything on modern systems.
This commit is contained in:
wimpunk 2014-08-06 11:26:46 +02:00
commit ec4ab3a636

View file

@ -1753,7 +1753,7 @@ sub check_value {
return undef if $value eq ""; return undef if $value eq "";
} elsif ($type eq T_IF) { } elsif ($type eq T_IF) {
return undef if $value !~ /^[a-z0-9:._-]+$/; return undef if $value !~ /^[a-zA-Z0-9:._-]+$/;
} elsif ($type eq T_PROG) { } elsif ($type eq T_PROG) {
return undef if $value eq ""; return undef if $value eq "";