diff options
| author | Andreas Schulz <ats@FreeBSD.org> | 1994-12-26 17:29:03 +0000 |
|---|---|---|
| committer | Andreas Schulz <ats@FreeBSD.org> | 1994-12-26 17:29:03 +0000 |
| commit | 9066320224e27eb40748c992ed83e6f3df25e926 (patch) | |
| tree | 094e30971d44fcc6b609ea9db8c5d50d3207e635 | |
| parent | 61233bdc2ebae3a26cdf01fe5586a8e8af1d55d4 (diff) | |
Notes
| -rw-r--r-- | usr.bin/rwho/rwho.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/rwho/rwho.c b/usr.bin/rwho/rwho.c index ee9c76d2371a..6191803bc82d 100644 --- a/usr.bin/rwho/rwho.c +++ b/usr.bin/rwho/rwho.c @@ -144,7 +144,7 @@ main(argc, argv) mp = myutmp; for (i = 0; i < nusers; i++) { char buf[BUFSIZ]; - (void)sprintf(buf, "%s:%s", mp->myhost, mp->myutmp.out_line); + (void)sprintf(buf, "%s:%-8.8s", mp->myhost, mp->myutmp.out_line); printf("%-8.8s %-*s %.12s", mp->myutmp.out_name, width, |
