From bab0558297f0614aa6b5cd273477eaf1a3684ceb Mon Sep 17 00:00:00 2001 From: Marcel Moolenaar Date: Tue, 11 Nov 2014 21:52:10 +0000 Subject: [PATCH] Fix text output for the uptime command. Reported by: "Max N. Boyarov" , ae@ --- usr.bin/w/w.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/w/w.c b/usr.bin/w/w.c index 059f7ce56028..effd0e304ae0 100644 --- a/usr.bin/w/w.c +++ b/usr.bin/w/w.c @@ -509,7 +509,7 @@ pr_header(time_t *nowp, int nusers) } /* Print number of users logged in to system */ - xo_emit(" {:users/%d} user%s", nusers, nusers == 1 ? "" : "s"); + xo_emit(" {:users/%d} {N:user%s}", nusers, nusers == 1 ? "" : "s"); /* * Print 1, 5, and 15 minute load averages.