mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 12:19:37 +03:00
LibC: Oops, rename getgrname() -> getgrnam().
This commit is contained in:
parent
69ffaa366d
commit
48590a0e51
Notes:
sideshowbarker
2024-07-19 15:03:29 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/48590a0e512
@ -59,7 +59,7 @@ struct group* getgrgid(gid_t gid)
|
|||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct group* getgrname(const char* name)
|
struct group* getgrnam(const char* name)
|
||||||
{
|
{
|
||||||
setgrent();
|
setgrent();
|
||||||
while (auto* gr = getgrent()) {
|
while (auto* gr = getgrent()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user