aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/finger
diff options
context:
space:
mode:
authorBill Fumerola <billf@FreeBSD.org>1999-07-04 17:26:16 +0000
committerBill Fumerola <billf@FreeBSD.org>1999-07-04 17:26:16 +0000
commit9ef5c48befdfa36ad5ef5e0ae898e7ca9397abcc (patch)
treeb5a6ada1388aeb7553694b736fde6dc7d114dbff /usr.bin/finger
parentadbaeacdd6ef7704c5427e2ed81c4364d91c6e07 (diff)
Notes
Diffstat (limited to 'usr.bin/finger')
-rw-r--r--usr.bin/finger/finger.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/finger/finger.c b/usr.bin/finger/finger.c
index 8a2cb2b39d19..ec0e6b9889e5 100644
--- a/usr.bin/finger/finger.c
+++ b/usr.bin/finger/finger.c
@@ -55,7 +55,7 @@ static char copyright[] =
static char sccsid[] = "@(#)finger.c 8.5 (Berkeley) 5/4/95";
#else
static const char rcsid[] =
- "$Id: finger.c,v 1.12 1997/07/02 06:34:48 charnier Exp $";
+ "$Id: finger.c,v 1.13 1999/05/08 00:46:04 obrien Exp $";
#endif
#endif /* not lint */
@@ -208,11 +208,12 @@ main(argc, argv)
if (!sflag)
lflag = 1; /* if -s not explicit, force -l */
}
- if (entries)
+ if (entries) {
if (lflag)
lflag_print();
else
sflag_print();
+ }
return (0);
}