summaryrefslogtreecommitdiffstats
path: root/usr.bin/w/w.c
diff options
context:
space:
mode:
authorsteve <steve@FreeBSD.org>1998-12-24 18:20:58 +0000
committersteve <steve@FreeBSD.org>1998-12-24 18:20:58 +0000
commit1c3fec22d8c0ca330768a27aa4547289b2c8f33e (patch)
treecf2841628ca96e6ee4494c97aa7f5c4badf54b7a /usr.bin/w/w.c
parent467e88b19d0ec5b2cbc8ce80aedd3f043a737db0 (diff)
downloadFreeBSD-src-1c3fec22d8c0ca330768a27aa4547289b2c8f33e.zip
FreeBSD-src-1c3fec22d8c0ca330768a27aa4547289b2c8f33e.tar.gz
Since argv is in scope, use argv[0] instead of __progname.
Suggested by: bde
Diffstat (limited to 'usr.bin/w/w.c')
-rw-r--r--usr.bin/w/w.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/w/w.c b/usr.bin/w/w.c
index 44d8009..c40d666 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.28 1998/06/09 04:35:20 imp Exp $";
+ "$Id: w.c,v 1.29 1998/11/09 01:19:30 steve Exp $";
#endif /* not lint */
/*
@@ -141,7 +141,7 @@ main(argc, argv)
(void) setlocale(LC_ALL, "");
/* Are we w(1) or uptime(1)? */
- if (strstr(__progname, "uptime")) {
+ if (strstr(argv[0], "uptime")) {
wcmd = 0;
p = "";
} else {
OpenPOWER on IntegriCloud