diff options
author | delphij <delphij@FreeBSD.org> | 2013-01-18 23:54:27 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2013-01-18 23:54:27 +0000 |
commit | 15e6f8c6a40013a2e0c15ff46849ef88e1529fcf (patch) | |
tree | 3d71788886ab2769f802c9d316c137e2641e6719 /usr.bin/w | |
parent | 3ade1f6acb35053936d191f505bbbf66b6761392 (diff) | |
download | FreeBSD-src-15e6f8c6a40013a2e0c15ff46849ef88e1529fcf.zip FreeBSD-src-15e6f8c6a40013a2e0c15ff46849ef88e1529fcf.tar.gz |
Set showthread = 0 for w(1).
X-MFC: together with r245610
Diffstat (limited to 'usr.bin/w')
-rw-r--r-- | usr.bin/w/w.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/w/w.c b/usr.bin/w/w.c index 2e19bb1..5a84e86 100644 --- a/usr.bin/w/w.c +++ b/usr.bin/w/w.c @@ -96,6 +96,7 @@ static int nflag; /* true if -n flag: don't convert addrs */ static int dflag; /* true if -d flag: output debug info */ static int sortidle; /* sort by idle time */ int use_ampm; /* use AM/PM time */ +int showthreads = 0;/* will threads be shown? */ static int use_comma; /* use comma as floats separator */ static char **sel_users; /* login array of particular users selected */ |