1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:27:46 +00:00

Kernel: Create /dev/full with mode 0666

This commit is contained in:
Brendan Coles 2021-03-03 23:27:47 +00:00 committed by Andreas Kling
parent 28a705d3c7
commit 953f4f7e60

View file

@ -37,7 +37,7 @@ public:
virtual ~FullDevice() override;
// ^Device
virtual mode_t required_mode() const override { return 0600; }
virtual mode_t required_mode() const override { return 0666; }
virtual String device_name() const override { return "full"; }
private: