Added "Default string" to not allowed host values

This commit is contained in:
Linus Dierheimer
2021-06-15 18:12:33 +02:00
parent 409b1f29a6
commit 9ade52ddc0
+2 -1
View File
@@ -13,7 +13,8 @@ static bool hostValueSet(FFstrbuf* value)
ffStrbufIgnCaseCompS(value, "To be filled by O.E.M.") != 0 &&
ffStrbufIgnCaseCompS(value, "System Product Name") != 0 &&
ffStrbufIgnCaseCompS(value, "System Version") != 0 &&
ffStrbufIgnCaseCompS(value, "Type1ProductConfigId") != 0
ffStrbufIgnCaseCompS(value, "Type1ProductConfigId") != 0 &&
ffStrbufIgnCaseCompS(value, "Default string") != 0
;
}