From 4a028994dfb14a2a07c11895c2b89fdd757a79e3 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Thu, 13 Nov 2025 13:34:06 +0900 Subject: [PATCH] user-util: fix typo Follow-up for b10fd796f56e4f16f7430cd22f59f544766d3bef. --- src/basic/user-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic/user-util.c b/src/basic/user-util.c index 3950a5aa14..4b692076c8 100644 --- a/src/basic/user-util.c +++ b/src/basic/user-util.c @@ -831,7 +831,7 @@ char* mangle_gecos(const char *d) { char *mangled; /* Makes sure the provided string becomes valid as a GEGOS field, by dropping bad chars. glibc's - * putwent() only changes \n and : to spaces. We do more: replace all CC too, and remove invalid + * putpwent() only changes \n and : to spaces. We do more: replace all CC too, and remove invalid * UTF-8 */ mangled = strdup(d);