Rollup merge of #109368 - hermitcore:typo, r=cuviper

fix typo in the creation of OpenOption for RustyHermit

Due to this typo we have to build a workaround for issue hermitcore/libhermit-rs#191.

RustyHermit is a tier 3 platform and backward compatibility does not have to be guaranteed.
This commit is contained in:
Matthias Krüger 2023-03-24 01:22:06 +01:00 committed by GitHub
commit cca2630bc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -202,7 +202,7 @@ impl OpenOptions {
create: false,
create_new: false,
// system-specific
mode: 0x777,
mode: 0o777,
}
}