summaryrefslogtreecommitdiffstats
path: root/usr.bin/finger
Commit message (Collapse)AuthorAgeFilesLines
* .publickey -> .pubkey to match other finger daemons.des2001-01-043-4/+4
| | | | Suggested by: assar
* Add support for a .publickey file.des2000-12-293-4/+9
| | | | | Submitted by: Svein Skogen <tds@nsn.no> Reviewed by: brian, ru
* If the utmp login time is greater than the tty atime, use it to calculatebrian2000-12-211-1/+7
| | | | | | | | | the idle time instead of the atime. This makes entries for people that have logged in but done nothing else show up correctly. Reviewed by: markk@knigma.org
* Prepare for mdoc(7)NG.ru2000-12-191-2/+2
|
* Document what Idle=* means in a short format display.ru2000-12-121-0/+3
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-9/+9
|
* The -o is the default for "short" display, not the -h.ru2000-10-241-3/+4
|
* -Wall cleanup.ru2000-10-233-13/+10
| | | | PR: 22187
* Do not allow `finger -m /somefile' as well.ru2000-10-051-3/+3
|
* Don't allow finger /somefile, only allow filname expansions frombrian2000-10-021-0/+10
| | | | | | inside /etc/finger.conf PR: 21704
* Don't assume ai0->ai_canonname will always be filled in. Print thewollman2000-09-241-1/+6
| | | | | | user-supplied host name if we can't get a canonical name. Obtained from: contrib/tcp_wrappers/socket.c rev. 1.4 (in spirit)
* Implement IPv6 support. Also restructure the way multi-homed hostswollman2000-09-221-57/+91
| | | | are treated, regardless of protocol.
* Delete a bogus reference to T/TCP -- the problem still exists on Standardwollman2000-09-221-3/+1
| | | | TCP.
* Don't drop out when we've processed argc - 1 names.... argumentsbrian2000-09-121-7/+3
| | | | | | may expand to more than one user. PR: 21228
* Finger.conf first appeared in 4.2 (now that it's been MFCd)brian2000-08-251-1/+1
|
* Fix the -m option - broken by the last commit.brian2000-08-251-1/+1
| | | | Submitted by: Mark Knight <markk@knigma.org>
* Add a missing comma.sheldonh2000-08-251-1/+1
|
* Allow finger.conf to contain aliases for files that will be displayedbrian2000-08-256-21/+50
| | | | | | when fingered. Submitted by: Mark Knight <markk@knigma.org>
* Remove extraneous arguments to the Os (operating system) and Nmsheldonh2000-08-171-4/+4
| | | | | | | (name) macros. Do not terminate the cross-reference list in the SEE ALSO section with a period.
* Allow a /etc/finger.conf file that contains finger aliasesbrian2000-08-175-1/+162
| | | | | | | This allows people who's email address differs from their account name to be fingerable. Submitted by: Mark Knight <markk@knigma.org>
* Backout previous commit.asmodai2000-07-121-1/+1
| | | | (Mental note: don't forget -rRELENG_4 next time.)
* MFC: fix some output cosmetics so that the finger -s output is properlyasmodai2000-07-121-1/+1
| | | | lined up
* Fix finger -s output on an user who never logged in.asmodai2000-07-111-1/+1
| | | | | | | | This is purely a cosmetic patch. PR: 9809 Submitted by: se Nagged about: nrahlstr
* Don't call warn() with no format string.kris2000-07-101-1/+1
|
* Remove single-space hard sentence breaks. These degrade the qualitysheldonh2000-03-011-1/+2
| | | | | of the typeset output, tend to make diffs harder to read and provide bad examples for new-comers to mdoc.
* $Id$ -> $FreeBSD$peter1999-08-287-7/+7
|
* Use the final version of the patch for the overflow, not the next toimp1999-08-221-7/+9
| | | | | | final. Noticed by: eivind
* Fix possible buffer overflow with finger and fingerd.imp1999-08-211-16/+27
| | | | | | | Submitted by: Lukasz Luzar <lluzar@noname.kki.krakow.pl> and Eivind Eklund <eivind@yes.no> This patch is actually a combination of those two patches.
* Clean up some ambiguous nested if/elses.billf1999-07-041-2/+3
|
* Impliment elements of TCP Wrappers's `safe_finger'.obrien1999-05-083-2/+46
| | | | | | | * if run by root (or root process) drop privs * ensure output size is not infinate (net finger only) * ensure output lines are not infinate in length (net finger only) * do not allow finger client to run longer than 3 minutes (net finger only)
* fix 8bit clean issueache1998-08-071-5/+5
| | | | PR: 7519
* Don't assume that hp->h_lenght == 4. Be conservative in its use.imp1998-06-091-2/+3
| | | | Submitted by: J. Assange a long time ago.
* Document the bogus standard requirement of delaying the close.wollman1997-08-011-2/+14
| | | | Also include a reference to the FINGER RFC.
* So somebody actually found language in the FINGER RFC which requireswollman1997-08-011-3/+3
| | | | | | | | implementations to leave the client side open until the server closes. While this is totally idiotic, it seems as if some servers actually require it (e.g., the one at mit.mit.edu). So, we bow to the weight of the bogus standard and disable the initial close. Hopefully now fetch(1) can serve the role of T/TCP demonstration application.
* Add rcsid, usage(). Silent -Wall. Use warn(3).charnier1997-07-026-17/+46
|
* compare return value from getopt against -1 rather than EOF, per the finalimp1997-03-291-1/+1
| | | | posix standard on the topic.
* Skip \r character while printing Plan/etc. text files, it allows toache1997-03-171-2/+4
| | | | | handle \r\n and \n\r files properly. Previous variant put ^M for \r\n and ^M\n for \n\r
* Merge from Lite2peter1997-03-116-71/+68
|
* This commit was generated by cvs2svn to compensate for changes in r23690,peter1997-03-111-2/+1
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import some parts of CSRG 4.4BSD-Lite2 usr.bin sources to fix tree build.peter1997-03-117-72/+70
| |
* | Adjust line to not overflow 80 cols (result of recent utmp changes)ache1996-12-051-8/+8
| |
* | Allow the user to disable the use of T/TCP by setting the -T option.olah1996-03-153-4/+20
| | | | | | | | This option becomes useless when all TCP stacks are fixed out there.
* | Print 8bit chars from the net if current locale allows themache1996-03-101-2/+3
| |
* | Implement client-side transaction TCP. This has little effectwollman1995-12-171-13/+39
| | | | | | | | | | if the server doesn't support it. (This is intended mostly as an example.)
* | Change locale to LC_ALL, there is no bitmaskache1995-10-261-1/+1
| |
* | Add setlocale LC_TIME|LC_CTYPEache1995-10-241-0/+3
| |
* | Reverse out some of the previous commit I did, which shortened thepeter1995-10-101-8/+11
| | | | | | | | | | | | | | | | | | | | | | | | finger output from 80 to 79 characters to stop the syscons every-second-line-is-blank problem. Also, redo the TTY column mod so that it steals one of the (usually) two blank spaces from the before the tty column rather than from the office phone number. This means the office phone field width in the short finger is back to 15 characters instead of 13.
* | Increase the tty column width from 2 to 3 characters.peter1995-09-041-5/+5
| | | | | | | | | | | | | | | | This gives us more room to breath with tty names, especially with drivers that support large numbers of ports.. eg: specialix and digiboard. This does not actually change the current tty names, it just allows room for reporting more characters if the drivers use them.
* | Allow national printable chars in .planache1995-08-081-1/+1
| |
* | Replace asctime/ctime by strftime %c to use national representationache1995-08-082-8/+9
| |
OpenPOWER on IntegriCloud