mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
ls: Use Core::System::pledge(..)
instead of LibC API
This commit is contained in:
parent
af3751e4dd
commit
7eaf1cfdc2
Notes:
sideshowbarker
2024-07-17 14:28:31 +09:00
Author: https://github.com/bgianfo Commit: https://github.com/SerenityOS/serenity/commit/7eaf1cfdc2 Pull-request: https://github.com/SerenityOS/serenity/pull/13496 Reviewed-by: https://github.com/awesomekling ✅
1 changed files with 1 additions and 4 deletions
|
@ -94,10 +94,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
flag_colorize = true;
|
||||
}
|
||||
|
||||
if (pledge("stdio rpath", nullptr) < 0) {
|
||||
perror("pledge");
|
||||
return 1;
|
||||
}
|
||||
TRY(Core::System::pledge("stdio rpath"));
|
||||
|
||||
Vector<StringView> paths;
|
||||
|
||||
|
|
Loading…
Reference in a new issue