diff options
author | asmodai <asmodai@FreeBSD.org> | 2000-07-11 08:37:56 +0000 |
---|---|---|
committer | asmodai <asmodai@FreeBSD.org> | 2000-07-11 08:37:56 +0000 |
commit | 0c292e5f74942d707acc9f252827a7f22250530f (patch) | |
tree | 4081af606731f627ecb7c2fa5a92aefba8492f5f /usr.bin/finger | |
parent | 7402d1359e445859c09a9564907c835fdf346018 (diff) | |
download | FreeBSD-src-0c292e5f74942d707acc9f252827a7f22250530f.zip FreeBSD-src-0c292e5f74942d707acc9f252827a7f22250530f.tar.gz |
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
Diffstat (limited to 'usr.bin/finger')
-rw-r--r-- | usr.bin/finger/sprint.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 ? |