diff options
author | pst <pst@FreeBSD.org> | 1994-12-05 10:01:39 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1994-12-05 10:01:39 +0000 |
commit | dfd4f9e068d903b26d10f18b8bcdff59d3521c17 (patch) | |
tree | de5a009ebf7252260e23d2fb5f9590e4c7c71c04 /usr.bin/finger | |
parent | 228a2d3e7ffaacd1b5c59e477f1ca3780e293c9e (diff) | |
download | FreeBSD-src-dfd4f9e068d903b26d10f18b8bcdff59d3521c17.zip FreeBSD-src-dfd4f9e068d903b26d10f18b8bcdff59d3521c17.tar.gz |
Remove extra newline introduced in 44lite (oops)
Diffstat (limited to 'usr.bin/finger')
-rw-r--r-- | usr.bin/finger/finger.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/finger/finger.c b/usr.bin/finger/finger.c index 2bf0704..4421507 100644 --- a/usr.bin/finger/finger.c +++ b/usr.bin/finger/finger.c @@ -271,8 +271,11 @@ userlist(argc, argv) } /* Handle network requests. */ -net: for (p = nargv; *p;) +net: for (p = nargv; *p;) { netfinger(*p++); + if (*p || entries) + printf("\n"); + } if (entries == 0) return; |