summaryrefslogtreecommitdiff
path: root/src/who.c
diff options
context:
space:
mode:
authorBenno Schulenberg <bensberg@justemail.net>2008-08-04 22:11:47 +0200
committerJim Meyering <meyering@redhat.com>2008-08-11 09:47:00 +0200
commitd7e2f425e7bd8818c69a08bb1f24fb8afa8cfea6 (patch)
treef71544815ff3da634b89eef3ee087b4e2088487e /src/who.c
parent4b5e044be39c4699adfe499bd100d19613a98c58 (diff)
downloadcoreutils-d7e2f425e7bd8818c69a08bb1f24fb8afa8cfea6.tar.xz
who: Gettextize two forgotten strings
Diffstat (limited to 'src/who.c')
-rw-r--r--src/who.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/who.c b/src/who.c
index 0bba91275..94af8bfec 100644
--- a/src/who.c
+++ b/src/who.c
@@ -427,7 +427,7 @@ print_user (const STRUCT_UTMP *utmp_ent, time_t boottime)
static void
print_boottime (const STRUCT_UTMP *utmp_ent)
{
- print_line (-1, "", ' ', -1, "system boot",
+ print_line (-1, "", ' ', -1, _("system boot"),
time_string (utmp_ent), "", "", "", "");
}
@@ -472,7 +472,7 @@ print_login (const STRUCT_UTMP *utmp_ent)
/* FIXME: add idle time? */
- print_line (-1, "LOGIN", ' ', sizeof utmp_ent->ut_line, utmp_ent->ut_line,
+ print_line (-1, _("LOGIN"), ' ', sizeof utmp_ent->ut_line, utmp_ent->ut_line,
time_string (utmp_ent), "", pidstr, comment, "");
free (comment);
}