From be128d1431c175c809ffcaaf56aa3f7d45b9e713 Mon Sep 17 00:00:00 2001 From: Christian Goeschel Ndjomouo Date: Tue, 13 Jan 2026 23:21:33 -0500 Subject: [PATCH] chfn: fix typos, wording, and punctuation inconsistencies Signed-off-by: Christian Goeschel Ndjomouo --- login-utils/chfn.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/login-utils/chfn.c b/login-utils/chfn.c index 1c511b8bc..27bdddaaa 100644 --- a/login-utils/chfn.c +++ b/login-utils/chfn.c @@ -417,12 +417,12 @@ int main(int argc, char **argv) if (!ctl.username) { ctl.pw = getpwuid(uid); if (!ctl.pw) - errx(EXIT_FAILURE, _("you (user %d) don't exist."), + errx(EXIT_FAILURE, _("your user %d does not exist"), uid); } else { ctl.pw = ul_getuserpw_str(ctl.username); if (!ctl.pw) - errx(EXIT_FAILURE, _("user \"%s\" does not exist."), + errx(EXIT_FAILURE, _("user \"%s\" does not exist"), ctl.username); } ctl.username = ctl.pw->pw_name; @@ -456,8 +456,8 @@ int main(int argc, char **argv) if (uid != 0 && uid != ctl.pw->pw_uid) { #endif errno = EACCES; - err(EXIT_FAILURE, _("running UID doesn't match UID of user we're " - "altering, change denied")); + err(EXIT_FAILURE, _("running UID doesn't match UID of the user you are " + "attempting to alter, change denied")); } printf(_("Changing finger information for %s.\n"), ctl.username); -- 2.47.3