summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>1998-06-09 04:35:20 +0000
committerimp <imp@FreeBSD.org>1998-06-09 04:35:20 +0000
commit078b9d996af0331bf96c49093e5b6256f283c816 (patch)
treeaae59d9b6b94a97893aa0420dd2c07a473fd17c2 /usr.bin
parent8c96be00ef748f03f9e7f9f5934e7b0d53d1c872 (diff)
downloadFreeBSD-src-078b9d996af0331bf96c49093e5b6256f283c816.zip
FreeBSD-src-078b9d996af0331bf96c49093e5b6256f283c816.tar.gz
Remove unused strvisx.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/w/w.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/usr.bin/w/w.c b/usr.bin/w/w.c
index f822281..a102752 100644
--- a/usr.bin/w/w.c
+++ b/usr.bin/w/w.c
@@ -42,7 +42,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)w.c 8.4 (Berkeley) 4/16/94";
#endif
static const char rcsid[] =
- "$Id: w.c,v 1.26 1998/05/14 10:13:24 jkoshy Exp $";
+ "$Id: w.c,v 1.27 1998/05/21 08:46:48 jkoshy Exp $";
#endif /* not lint */
/*
@@ -135,7 +135,7 @@ main(argc, argv)
u_long l;
size_t arglen;
int ch, i, nentries, nusers, wcmd, longidle;
- char *memf, *nlistf, *p, *vis_args, *x;
+ char *memf, *nlistf, *p, *x;
char buf[MAXHOSTNAMELEN], errbuf[256];
(void) setlocale(LC_ALL, "");
@@ -338,8 +338,6 @@ main(argc, argv)
memmove(domain, p, strlen(p) + 1);
}
- if ((vis_args = malloc(argwidth * 4 + 1)) == NULL)
- errx(1, "malloc");
for (ep = ehead; ep != NULL; ep = ep->next) {
p = *ep->utmp.ut_host ? ep->utmp.ut_host : "-";
if ((x = strchr(p, ':')) != NULL)
@@ -392,12 +390,6 @@ main(argc, argv)
longidle=pr_idle(ep->idle);
if (longidle)
argwidth--;
- if (ep->args != NULL) {
- arglen = strlen(ep->args);
- strvisx(vis_args, ep->args,
- arglen > argwidth ? argwidth : arglen,
- VIS_TAB | VIS_NL | VIS_NOSLASH);
- }
(void)printf("%.*s\n", argwidth, ep->args);
}
exit(0);
OpenPOWER on IntegriCloud