From 0c292e5f74942d707acc9f252827a7f22250530f Mon Sep 17 00:00:00 2001 From: asmodai Date: Tue, 11 Jul 2000 08:37:56 +0000 Subject: Fix finger -s output on an user who never logged in. This is purely a cosmetic patch. PR: 9809 Submitted by: se Nagged about: nrahlstr --- usr.bin/finger/sprint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/finger/sprint.c b/usr.bin/finger/sprint.c index acf9dff..40b7d82 100644 --- a/usr.bin/finger/sprint.c +++ b/usr.bin/finger/sprint.c @@ -109,7 +109,7 @@ sflag_print() pn->name, MAXREALNAME, namelen, pn->realname ? pn->realname : ""); if (!w->loginat) { - (void)printf(" * * No logins "); + (void)printf(" * * No logins "); goto office; } (void)putchar(w->info == LOGGEDIN && !w->writable ? -- cgit v1.1