Commit ab1bfa5c authored by Andy Grover's avatar Andy Grover

ACPI: Allow ":" in OS override string (Ducrot Bruno)

parent c12eb6ef
...@@ -1006,7 +1006,7 @@ acpi_os_name_setup(char *str) ...@@ -1006,7 +1006,7 @@ acpi_os_name_setup(char *str)
return 0; return 0;
for (; count-- && str && *str; str++) { for (; count-- && str && *str; str++) {
if (isalnum(*str) || *str == ' ') if (isalnum(*str) || *str == ' ' || *str == ':')
*p++ = *str; *p++ = *str;
else if (*str == '\'' || *str == '"') else if (*str == '\'' || *str == '"')
continue; continue;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment