mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
passwd: Remove duplicate 'wpath' pledge
This commit is contained in:
parent
2830ce5383
commit
6803d5dfbe
Notes:
sideshowbarker
2024-07-18 23:01:21 +09:00
Author: https://github.com/Doctor5555 🔰 Commit: https://github.com/SerenityOS/serenity/commit/6803d5dfbec Pull-request: https://github.com/SerenityOS/serenity/pull/5031
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ int main(int argc, char** argv)
|
|||
return 1;
|
||||
}
|
||||
|
||||
if (pledge("stdio wpath rpath wpath cpath fattr tty", nullptr) < 0) {
|
||||
if (pledge("stdio wpath rpath cpath fattr tty", nullptr) < 0) {
|
||||
perror("pledge");
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue