Merge pull request #75 from Florin9doi/issue_74

Repair network installer; Fixes #74
This commit is contained in:
Sergey 2020-01-22 15:22:21 +03:00 committed by GitHub
commit 27de9a9c9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -109,7 +109,8 @@ BOOLEAN checkOSBundleRequired(UINT8 loaderType, TagPtr dict)
} else if (OSTYPE_IS_OSX_INSTALLER(loaderType)) {
if (AsciiStrnCmp(osbundlerequired, "root", 4) &&
AsciiStrnCmp(osbundlerequired, "local", 5) &&
AsciiStrnCmp(osbundlerequired, "console", 7)) {
AsciiStrnCmp(osbundlerequired, "console", 7) &&
AsciiStrnCmp(osbundlerequired, "network-root", 12)) {
inject = FALSE;
}
}