mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
LibC: setspent() should not print to stderr
This commit is contained in:
parent
3cab91e8d7
commit
3b759451c6
Notes:
sideshowbarker
2024-07-18 18:43:33 +09:00
Author: https://github.com/gunnarbeutner
Commit: 3b759451c6
Pull-request: https://github.com/SerenityOS/serenity/pull/6849
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ void setspent()
|
|||
} else {
|
||||
s_stream = fopen("/etc/shadow", "r");
|
||||
if (!s_stream) {
|
||||
perror("open /etc/shadow");
|
||||
dbgln("open /etc/shadow failed: {}", strerror(errno));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue