aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/who
Commit message (Collapse)AuthorAgeFilesLines
* Remove contractions.Joel Dahl2012-10-071-1/+1
| | | | Notes: svn path=/head/; revision=241331
* General mdoc(7) and typo fixes.Glen Barber2012-05-101-1/+1
| | | | | | | | | PR: 167696 Submitted by: Nobuyuki Koganemaru (kogane!jp.freebsd.org) MFC after: 3 days Notes: svn path=/head/; revision=235211
* And of course, I forgot to add -a to the usage.Ed Schouten2012-02-111-1/+1
| | | | Notes: svn path=/head/; revision=231537
* Attempt to implement who -a.Ed Schouten2012-02-112-22/+16
| | | | | | | | | According to POSIX, -a is equal to -bdlprtTu. It seems this is not true in practice, as -b normally restricts the output to BOOT_TIME entries and all implementations that I know of don't. Notes: svn path=/head/; revision=231536
* Add the XSI option -b to show date of the last reboot.Sergey Kandaurov2011-10-282-8/+31
| | | | | | | | | | That required to increase the LINE field to fit the output of -b. While here, change the row() function to take a const argument. In collaboration with: ed Notes: svn path=/head/; revision=226881
* Remove the advertising clause from UCB copyrighted files in usr.bin. ThisJoel Dahl2010-12-111-4/+0
| | | | | | | | | | | | is in accordance with the information provided at ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change Also add $FreeBSD$ to a few files to keep svn happy. Discussed with: imp, rwatson Notes: svn path=/head/; revision=216370
* Remove stale references to utmp(5) and its corresponding filenames.Ed Schouten2010-01-211-13/+13
| | | | | | | I removed utmp and its manpage, but not other manpages referring to it. Notes: svn path=/head/; revision=202756
* Perform all trivial ports to utmpx for usr.bin/.Ed Schouten2010-01-132-6/+2
| | | | | | | | They were already converted to use libulog, so it's easy to convert them to utmpx. Notes: svn path=/head/; revision=202200
* Build usr.bin/ with WARNS=6 by default.Ed Schouten2010-01-021-2/+0
| | | | | | | Also add some missing $FreeBSD$ to keep svn happy. Notes: svn path=/head/; revision=201386
* Several refinements to libulog's API.Ed Schouten2009-12-261-1/+1
| | | | | | | | | | | | - Only set the fields in the ulog_utmpx structure that are valid for the command in question. This means that strings like "shutdown" or "~" are not visible to the user anymore. - Rename UTXF_* to UTXI_*, indicating the indexation, instead of using the `antique' filename. If we ever get rid of utmp, it makes little sense calling it by its old name. Notes: svn path=/head/; revision=201033
* Revert most part of 200420 as requested, as more review and polish isXin LI2009-12-131-0/+1
| | | | | | | needed. Notes: svn path=/head/; revision=200462
* Remove unneeded header includes from usr.bin/ except contributed code.Xin LI2009-12-111-1/+0
| | | | | | | Tested with: make universe Notes: svn path=/head/; revision=200420
* Port who(1) to utmpx.Ed Schouten2009-12-052-58/+56
| | | | | | | | | | | | | (Un)fortunately there is no standardized interface to switch between utmp database files, so we must call ulog_setutxfile() here. I'm also changing the column widths to magic numbers here. Display layout should in this case not be derived from structure fields sizes. Because I don't want struct utmpx ever to become too small, the fields are too big to reserve all the space. Notes: svn path=/head/; revision=200166
* In wall and who, check that the utmp entry isn't stalled, as it is done in w.Olivier Houchard2006-02-211-3/+21
| | | | | | | | | | Apparently with the new pts code stalled entries are printed, when they are not with the BSD ptys. Submitted by: Michal Mertl <mime at traveller dot cz> Notes: svn path=/head/; revision=155875
* Move variable initialization to reduce compiler warning.Philippe Charnier2005-05-291-2/+2
| | | | Notes: svn path=/head/; revision=146753
* Added the EXIT STATUS section where appropriate.Ruslan Ermilov2005-01-171-1/+1
| | | | Notes: svn path=/head/; revision=140368
* Mechanically kill hard sentence breaks.Ruslan Ermilov2004-07-021-2/+4
| | | | Notes: svn path=/head/; revision=131491
* Fix a warning that showed up on 64 bit systems. It was actually a realPeter Wemm2003-10-261-1/+1
| | | | | | | bug that had been swept under the carpet. Notes: svn path=/head/; revision=121548
* Remove unimplemented System V options from the getopt() option string.Tim J. Robbins2002-12-211-1/+1
| | | | Notes: svn path=/head/; revision=108146
* mdoc(7) police: markup polishing.Ruslan Ermilov2002-11-261-3/+1
| | | | | | | Approved by: re Notes: svn path=/head/; revision=107276
* utmp.ut_time and lastlog.ll_time are explicitly int32_t rather thanPeter Wemm2002-11-151-3/+5
| | | | | | | | | | | | | | | time_t. Deal with the possibility that time_t != int32_t. This boils down to this sort of thing: - time(&ut.ut_time); + ut.ut_time = time(NULL); and similar for ctime(3) etc. I've kept it minimal for the stuff that may need to be portable (or 3rd party code), but used Matt's time32 stuff for cases where that isn't as much of a concern. Approved by: re (jhb) Notes: svn path=/head/; revision=106966
* Style: put static qualifier on definition of static functions.Tim J. Robbins2002-06-201-7/+7
| | | | Notes: svn path=/head/; revision=98483
* Refer to environ(7) for description of COLUMNS. Note the effects of LANG,Tim J. Robbins2002-06-071-11/+9
| | | | | | | LC_ALL and LC_TIME upon the utility. Notes: svn path=/head/; revision=97975
* Respect the setting of the COLUMNS environment variable, use it instead ofTim J. Robbins2002-06-042-6/+29
| | | | | | | the TTY width obtained by ioctl() when set & non-null. (SUSv3) Notes: svn path=/head/; revision=97800
* mdoc(7) police: lint.Ruslan Ermilov2002-05-301-8/+9
| | | | Notes: svn path=/head/; revision=97548
* Write "FROM" heading above the hostname column, like NetBSD and GNU do.Tim J. Robbins2002-05-281-0/+1
| | | | Notes: svn path=/head/; revision=97374
* Reimplement the who(1) utility to add some features required by SUSv3:Tim J. Robbins2002-05-092-122/+270
| | | | | | | | | | | | | | -H option (show column headings), -T (show mesg(1) state), -m (same as "am I"), -u (show idle time), -q (quick mode; list names in columns). PR: 36128 Reviewed by: mike Notes: svn path=/head/; revision=96299
* remove __PWarner Losh2002-03-221-3/+3
| | | | Notes: svn path=/head/; revision=92922
* WARNS=2 fix, use __FBSDID().Mark Murray2001-12-111-11/+13
| | | | | | | WARNS=2 is not in Makefile, as this will be the default. Notes: svn path=/head/; revision=87679
* Remove whitespace at EOL.Dima Dorfman2001-07-151-2/+2
| | | | Notes: svn path=/head/; revision=79755
* Correct path to wtmp.Dima Dorfman2001-06-271-2/+2
| | | | | | | | PR: 28433 Submitted by: Joseph Mallett <jmallett@xMach.org> Notes: svn path=/head/; revision=78868
* Include missing header files which define functions for which gcc hasDima Dorfman2001-06-241-0/+1
| | | | | | | builtins (e.g., exit, strcmp). Notes: svn path=/head/; revision=78718
* Don't attempt to parse %cAndrey A. Chernov2001-03-211-3/+9
| | | | Notes: svn path=/head/; revision=74589
* mdoc(7) police: use the new features of the Nm macro.Ruslan Ermilov2000-11-201-2/+2
| | | | Notes: svn path=/head/; revision=68963
* $Id$ -> $FreeBSD$Peter Wemm1999-08-282-2/+2
| | | | Notes: svn path=/head/; revision=50477
* Back out Steve's fix, as this was already fixed by me in revision 1.6Dag-Erling Smørgrav1998-05-251-4/+0
| | | | Notes: svn path=/head/; revision=36370
* Only allow 'who' and 'who am i' as valid usages.Steve Price1998-05-251-1/+5
| | | | | | | | PR: 6294 Submitted by: Ruslan Ermilov <ru@ucb.crimea.ua> Notes: svn path=/head/; revision=36360
* Check that user really typed "who am {I,i}", and that no strayDag-Erling Smørgrav1998-04-261-1/+5
| | | | | | | | | | | | arguments are given. Note that usage() and the manpage disagree... PR: bin/6294 Suggested by: Ruslan Ermilov and Bruce Evans Submitted by: Ruslan Ermilov (partly) Notes: svn path=/head/; revision=35470
* Better SYNOPSISPoul-Henning Kamp1998-04-141-2/+3
| | | | | | | | | PR: 6294 Reviewed by: bde, phk Submitted by: Ruslan Ermilov <ru@ucb.crimea.ua> Notes: svn path=/head/; revision=35190
* Use err(3). Add usage().Philippe Charnier1997-08-262-20/+36
| | | | Notes: svn path=/head/; revision=28791
* Made sure the string formated by strftime() is properlyKazutaka YOKOTA1997-03-071-1/+2
| | | | | | | | | | | | | | null-terminated. Fixed a wrong if statement which should test a string is empty where in fact it tested the string pointer was NULL. Should go to RELENG_2_1 and RELENG_2_2. Reviewed by guido@freebsd.org. Notes: svn path=/head/; revision=23494
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-221-1/+1
| | | | Notes: svn path=/head/; revision=23012
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* [HISTORY] command appeared in Version 1 AT&T UNIXWolfram Schneider1996-08-291-1/+2
| | | | | | | Obtained from: A Quarter Century of UNIX, Peter H. Salus, page 41 Notes: svn path=/head/; revision=17891
* Add setlocale LC_TIMEAndrey A. Chernov1995-10-241-0/+3
| | | | Notes: svn path=/head/; revision=11757
* Replace ctime by strftime %c to use national date representation nowAndrey A. Chernov1995-08-071-4/+4
| | | | Notes: svn path=/head/; revision=9990
* BSD 4.4 Lite Usr.bin SourcesRodney W. Grimes1994-05-273-0/+245
Notes: svn path=/cvs2svn/branches/CHRISTOS/; revision=1590