summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* New w ability: you can list multiple users on the command line and it willgreen1999-07-282-51/+52
| | | | | | | | match with all of them, rather than only supporting a single user. PR: 11121 Kinda submitted by: James Howard <howardjp@byzantine.student.umd.edu> Reviewed by: DES
* This covers the previous version, since a null commit message was accidentallygreen1999-07-272-2/+2
| | | | | | | | | | used: Add a -c flag to print a count of messages and exit. PR: 10921 Submitted by: James Howard <howardjp@byzantine.student.umd.edu> Requested by: DES
* *** empty log message ***green1999-07-262-8/+22
|
* Convert interrupt count from signed to unsigned and the totaln_hibma1999-07-261-4/+6
| | | | | | | | from signed long to unsigned lon long. PR: 12808 Submitted by: Kevin Day toasty@dragondata.com Reviewed by: bde
* Apply suggested patch- seems reasonable.mjacob1999-07-242-5/+29
| | | | | PR: 12020 Submitted by: Matthew D. Fuller <fullermd@futuresouth.com>
* Correct a typo (22th -> 22nd)n_hibma1999-07-241-33/+34
| | | | | | | | | Remove some whitespace Fix a problem where any event on the Last whatever of the month was duplicated after the last day of the month (e.g. 32oct.) PR: 4907 Submitted by: Mikhail Teterin mi@aldan.algebra.com
* Regenerate to match changes made in the embedded yacc parser.hoek1999-07-231-28/+70
|
* Regenerate this file. This fixes a y2k bogon. As an unintentional side-effect,hoek1999-07-231-33/+75
| | | | | | | | it also fixes that fact that this file badly needed to be regenerated due to changes in yacc. Not done by: pst (in misc/1380) Almost done by: danny (in ftp.y)
* Don't dump core for a known, documented bug.sheldonh1999-07-221-1/+21
| | | | | PR: 12611 Reviewed by: markm
* Improve printf(3) conversion specifier parsing so that silly formatssheldonh1999-07-222-19/+97
| | | | | | | | | | | aren't allowed and the right casts can be used for printf() statements. Document the conversion specifier limitations and the fact that arithmetic overflow causes a fatal error. PR: 12611 Reported by: Frode Vatvedt Fjeld <frodef@acm.org> Reviewed by: bde
* Vastly improve the speed of the file command by makingwes1999-07-222-6/+7
| | | | | | | | | the expected size of the magic(5) database agree with the real world. Also, improve the behavior of the realloc mechanism when the magic database does exceed expectations. Reviewed by: Peter Jeremy, Matt Dillon Obtained from: Peter Edwards <peter.edwards@isocor.ie>
* Document the "skey" command in telnet(1).nik1999-07-191-1/+5
| | | | | PR: docs/12360 Submitted by: kjm@rins.ryukoku.ac.jp (KOJIMA Hajime)
* Add braces to appease the egcs -Wall mom.jdp1999-07-172-4/+6
|
* Make gcore work again. It was broken by a format change in thejdp1999-07-171-2/+2
| | | | | | | | | | procfs map file when object IDs were eliminated in the mega-commit that included procfs_map.c revision 1.19. The map file is a terrible hodge-podge. The fields that are used mainly for kernel debugging should be moved out of it into a separate file, so that the interface presented by the map file to applications can remain stable in the face of VM system changes.
* Decode new ptrace requests PT_GETDBREGS and PT_SETDBREGS.bde1999-07-171-1/+9
|
* Enable gprof on alpha.simokawa1999-07-165-6/+64
| | | | | | * alpha.{c,h} are same as i386.{c,h}. * Force address calculation to be done in long precision(64bit on alpha) rather than double precision(52bit).
* Add $Id$, to make it simpler for members of the translation teams tonik1999-07-12107-0/+113
| | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde
* Break lines to be < 80 chars. This has been done only to that file incracauer1999-07-071-16/+25
| | | | | | | | | | doscmd that was affected by the SA_SIGINFO changes (which made many lines longer). This application is in need for general code reformatting and warning fixes. Submitted by: Warner Losh <imp@village.org>
* Per requests from the community, commit rudimentary cross compilationimp1999-07-071-2/+2
| | | | | | | | | | | | support. I've been building world with these changes for months w/o ill effect. I've also managed to build the cross tool chain for MIPS with these patches. Please note that the extent to which these patches work is largely dictated by how well our tool chains support the cross compilation. Building alpha binaries on i386 doesn't work. Supposedly building i386 binaries on alpha does work, but I've not verified it with these patches, however.
* Use -finet option to netstat(1), and don't discard anything.des1999-07-062-11/+10
| | | | | | | Don't truncate the protocol field. These two changes conspire to make sockstat(1) show divert sockets. Submitted by: ru
* Don't truncate port numbers.des1999-07-061-9/+5
| | | | Submitted by: ru
* Update to new struct sigcontext after SA_SIGINFO changescracauer1999-07-064-18/+20
|
* Clean up some ambiguous nested if/elses.billf1999-07-0419-41/+62
|
* Don't ignore weak symbols.dt1999-07-031-1/+0
| | | | | | | | | | EGCS assign weak symbols to inline functions it couldn't inline (e.g. virtual inline functions), template functions, etc. Omitting them result in quite bogus profile. Weak symbols created by __weak_reference are not really problem. Caught by: Ilya Segalovich <iseg@comptek.ru>
* Reverse the FTP_PASSIVE_MODE check, so it checks for "is not NO" ratherdes1999-07-032-7/+8
| | | | than "is YES".
* Remove unused variable.billf1999-07-021-2/+1
| | | | Approved By: phk
* Add braces to avoid ambigious else.billf1999-07-021-1/+2
|
* o use getprotobynumber(3) instead of hardcoded protocol names.ru1999-07-022-27/+15
| | | | | | | | | Divert(4) sockets will now appear as "internet raw divert" instead of "internet raw 254". o -Wall tweak. Reviewed by: bde
* Actually fixed ambiguous else. The previous revision had no effect.bde1999-07-021-4/+4
|
* "transfered" -> "transferred"green1999-07-022-4/+4
| | | | Reviewed by: dict(1)
* Fix ambigious else.billf1999-07-011-2/+3
| | | | Reviewed By: eivind
* Document that FTP_PASSIVE_MODE should be explicitlyru1999-07-011-2/+4
| | | | | | | | | set to `YES' for passive mode to be used by default. Just setting FTP_PASSIVE_MODE is not sufficient, as it was before. Noted by: eivind Reviewed by: des
* (1) Don't perror() when at.deny doesn't exist, that's an accepted behavior.billf1999-07-011-3/+6
| | | | | | | | (2) Die when there is a problem opening at.allow other then it not existing. An error other then it not existing might be a trick to somehow circumvent system security. Mostly Reviewed By: msmith
* retreived -> retrievedkris1999-06-301-3/+3
| | | | Obtained from: OpenBSD
* Decode all currently supported values of the ptrace `request' arg.bde1999-06-261-3/+20
|
* Make a reference to rtprio, which will definatly be of interest to someonebillf1999-06-252-3/+6
| | | | | | looking at this page. Requested By: Keith Stevenson <k.stevenson@louisville.edu>
* - add "-s src_addr" option to allow setting of the source IP address;ru1999-06-257-75/+108
| | | | | - fix two minor bugs; - slightly cleanup manpage.
* Don't add '?' to getopt's options.imp1999-06-241-1/+1
|
* Some man page cleanup. Make the NAME and SYNOPSIS sections agree sompp1999-06-244-10/+22
| | | | | | that whatis(1) will produce the expected results. Pointed-out-by: Jesus Monroy <jesus.monroy@usa.net> in freebsd-doc
* Add the 'reset' command to the NAME section.mpp1999-06-241-1/+2
| | | | Pointed-out-by: Jesus Monroy <jesus.monroy@usa.net> in freebsd-doc
* Add a messy example of how to get debug-mode error messages written tosheldonh1999-06-231-1/+11
| | | | | | a file in the user's home directory. Requested by: hoek
* Don't strip trailing .suffixes from filenames. Although obviouslyhoek1999-06-212-5/+6
| | | | | | | intentional, this behaviour is far too obnoxious given the number of filenames such as rpc.statd we have. Submitted by: Chris Costello [3]chris@calldei.com (bin/11303)
* Add missing argument to synopsis.sheldonh1999-06-211-1/+2
| | | | PR: 11805
* This fixes the problem of cancelling an FTP transfer resulting ingreen1999-06-212-3/+6
| | | | | a bogus error ("parsing URI".) I also fixed an inconsistency in another fs_status.
* Postpone call to usage() until after all options are processed so thatsheldonh1999-06-181-6/+9
| | | | the -d debugging option produces consistent behaviour.
* Please forgive me, it's my first day on the block. Forgot to mention:sheldonh1999-06-171-1/+1
| | | | PR: 11987
* Null commit to reflect that the previous commit added warnings forsheldonh1999-06-171-1/+1
| | | | | previously unreported malloc() failures, and changed the exit status for those failures to encourage MTA retries.
* * Add a command-line option to enable debugging mode, which sends errorsheldonh1999-06-172-19/+67
| | | | | | | | messages to stderr instead of syslog. * Fix manpage with respect to diagnostics. Reported by: rfg@monkeys.com (Ronald F. Guilmette)
* Add "-N" option to the SYNOPSIS and usage().ru1999-06-172-5/+5
|
* Syscall arguments are now properly aligned. Print them, and syscall returndt1999-06-161-16/+16
| | | | values, as longs, instead of int.
OpenPOWER on IntegriCloud