summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Add "-s src_addr" option to allow setting of the source IP address.ru1999-06-163-9/+60
|
* Correctly document the two different object file formats that can bempp1999-06-151-3/+3
| | | | | | used with objformat. PR: 10877
* It was possible to circumvent telnet's security ``-E'' (no escape at all)ru1999-06-141-1/+1
| | | | | | | option by running it with ``-8 -E'' and passing it 0xff character. PR: 6317 Reviewed by: des, David Borman <dab@bsdi.com> (the author)
* Man pages for top refer to only 2.x, but not to 3.x and latern_hibma1999-06-142-4/+4
|
* Change locale name of Traditional Chinese : zh_TW.BIG5 -> zh_TW.Big5.foxfair1999-06-083-4/+4
| | | | | | | It makes compatible with IANA charset defination, and let existent I18N app happier. Ref: <http://www.isi.edu/in-notes/iana/assignments/character-sets>
* Separate the pftp and FTP_PASSIVE_MODE tests so gate mode works again.des1999-06-071-4/+7
| | | | | | | | | | PR: bin/12070 Submitted by: Dominic Mitchell <Dom.Mitchell@palmerharvey.co.uk> Specifically check that FTP_PASSIVE_MODE is set to YES, rather than just checking if it is defined. Discussed on: freebsd-current
* Correct description of -c and -w optionskris1999-06-061-8/+10
| | | | | Inspired by: PR docs/11774 Submitted by: Chad R. Larson <chad@freeway.dcfinc.com>
* The -perm option takes argument [-]mode, not [-mode]kris1999-06-061-3/+6
| | | | Obtained from: NetBSD, by way of OpenBSD
* - When trying to decide if $EDITOR == "vi", match against only the firsthoek1999-06-051-5/+28
| | | | | | | two characters of $EDITOR. This allows things like "vim" and "vi -G" (although nvi would fail...oh well). - Avoid certain cases where the editor is passed an invalid line number.
* Fix a width.ru1999-06-051-1/+1
|
* Support the IANA definition of Shift Jis nameley ja_JP.Shift_JISjulian1999-06-052-3/+5
| | | | as well as the X11 version ja_JP.SJIS
* No, the space required for a string is strlen() _plus_ one... Oops.hoek1999-06-041-3/+2
|
* getvfsbyname() returns zero on success.ru1999-06-031-2/+2
| | | | | PR: 12000 Submitted by: Anatoly A. Orehovsky <tolik@mpeks.tomsk.su>
* Don't print backspaces in first column since they backup to the prev line.hoek1999-06-021-5/+12
|
* Grok gtags too.hoek1999-06-017-42/+425
|
* General code cleanup [incomplete]. Make the arrow keys work.hoek1999-05-309-91/+339
|
* Fixed usage message to almost match the man page. The old -d option andbde1999-05-271-12/+9
| | | | | | | | | | | the new -i option were missing. Fixed style bugs in previous commit: (1) initialisation of a local variable in its declaration. (2) inconsistency of (1) with style of nearby code. (3) disorder of declaration for (1). (4) a line longer than 80 characters. (5) bitrot in the printf() -> err() cleanups to help bloat the line in (4).
OpenPOWER on IntegriCloud