1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

passwd: Remove duplicate 'wpath' pledge

This commit is contained in:
Doctor5555 2021-01-21 16:28:54 +00:00 committed by Andreas Kling
parent 2830ce5383
commit 6803d5dfbe

View file

@ -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;
}