summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* style(9) cleanup.maxim2002-04-101-22/+22
| | | | | Reviewed by: bde MFC after: 1 week
* Style.obrien2002-04-101-3/+3
|
* Quiet uninitialized warnings.obrien2002-04-102-0/+2
|
* compress(1) has an erroneous description of zcat, fixed.trhodes2002-04-091-8/+7
| | | | | PR: 36453 No objections from: ru
* Introduce NO_RCMNDS flag so as to not compile rsh, rlogin, and rcp on will,bmilekic2002-04-091-2/+5
| | | | | | | and document in share/examples/etc/make.conf Submitted by: Aleksandar Simic <asimic@dsl.pipex.com> MFC after: 1 week
* No longer needed to #ifdef __FBSDID, this is now handled by Makefile.inc1.ru2002-04-0915-33/+0
|
* Style.ru2002-04-091-7/+7
|
* Make this compile in a standalone environment.ru2002-04-091-3/+2
| | | | | Tidy up CLEANFILES. Use built-in rules for building "maketab".
* Cast totreq to unsigned long long, as needed on 64-bit machines.asmodai2002-04-081-1/+2
| | | | Pointed out by: jeff
* Remove it in favour of GNU sortache2002-04-081-11/+0
|
* Disconnect sortache2002-04-081-1/+0
|
* Some things don't compile on ia64 and sparc64 yet.obrien2002-04-081-2/+5
|
* Align for const poisoning in -lutil.ru2002-04-081-6/+7
|
* Change totreq to uint64_t from a long (the PR has an int64_t, which didn'tasmodai2002-04-081-3/+4
| | | | | | | | | | make sense to me) and change the printf argument from %8ld to %20llu to accompany the printing of the totals. Realigned the header printed above it as well. PR: 32342 Submitted by: ryan beasley <ryanb@goddamnbastard.org> Reviewed by: jeff, Tim J Robbins
* GCC 3.1 cleanup - add a break after default: at the end of a switchmurray2002-04-082-0/+2
| | | | statement.
* FreeBSD prior to 4.4-RELEASE and older versions of 5.0-CURRENT doru2002-04-072-10/+6
| | | | | | | | not have setprogname(3) and getprogname(3), and we need to build lint(1) as a cross-tool to bootstrap. Versions from lib/libc/gen can't be compiled either. PR: bin/36747
* Later versions of gcc object very strongly to the -C flag being passedpeter2002-04-071-1/+1
| | | | | as -CC. It makes no difference to gcc in the tree, but this change is necessary for gcc-3.1 to work.
* Fix sed(1) in the case where a last line is specified and hold space is notjmallett2002-04-071-3/+5
| | | | | | | | | | | | | | | | | specified, and then the first part of the pattern space is deleted, when there are two or more input lines, as this results in subtraction of one from an unsigned integral value of '0'. That bogus value is used in one case for a loop (that will run far too many times in this case) and a function to search for a value within a specified range of memory, however now the range of memory is obscenely large and a segmentation fault will occur. This is fixed by checking for and appropriately handling a nil pattern space as if the specified search in memory failed, as indeed it obviously will with nil pattern space. Submitted by: Tim J. Robbins <tim@robbins.dropbear.id.au> PR: bin/34813 Reviewed by: mike MFC after: 1 day
* Use the new features of cdefs.h.obrien2002-04-061-1/+1
|
* Fix style.obrien2002-04-062-7/+2
|
* Remove old sort files to _actually_ build it from contrib sourcesache2002-04-0613-3384/+0
| | | | Forgotten by: des
* Rename a couple of local variables to avoid warnings.des2002-04-061-26/+26
| | | | Sponsored by: DARPA, NAI Labs
* Build a working version of sort(1) from contrib. Use netbsd.h as a hackdes2002-04-062-2/+11
| | | | | to avoid bringing the sources off the vendor branch just to #ifdef out the RCS and SCCS IDs.
* Print IFT_ETHER addresses with ether_ntoa(3) (with leading zeros).ru2002-04-061-13/+6
|
* Exclude xlint for ia64. For the time being, there are enough gccpeter2002-04-061-1/+4
| | | | | | | dependencies in the machine/* headers to make it explode when -U__GNUC__ is specified by lint. Not to mention that lint is passing undocumented (illegal?) args to cpp and that seems to upset gcc-3.1 now. Specifically, -Wp,-CC. -Wp,-C is documented and legal though.
* style(9) cosmetique of my changesache2002-04-061-18/+18
|
* Add note about double-character letters like "ss" into BUGS sectionache2002-04-051-0/+3
| | | | Reviewed by: Mike DeGraw-Bertsch <mbertsch@radioactivedata.org>
* Fix sed(1) behaviour for 'G' when given null holdspace by making sure itjmallett2002-04-051-0/+2
| | | | | | | | | | contains a \n. PR: misc/26153 Submitted by: ashp Reviewed by: mike Obtained from: NetBSD MFC after: 2 days
* Revert the "tell the program name in diagnostics". What was I thinking??obrien2002-04-052-66/+58
| | | | warnx() already does this for us.
* Minor reordering of declarations to reduce diffs to OpenBSD/NetBSD.obrien2002-04-042-17/+18
|
* Allow to compile errorlessly with GCC 3.1.obrien2002-04-041-3/+1
|
* Fix signal race.obrien2002-04-041-4/+8
| | | | | | | Use strlen() rather than magic number. Use _PATH_TMP. Obtained from: OpenBSD rev 1.13 (sig race) & rev 1.9 (strlen)
* Revert revision 1.3. This is WARNS=4 clean w/o it and it only increasesobrien2002-04-041-1/+1
| | | | the diffs to Open/NetBSD.
* Fix style regression introduced in rev 1.11 during a WARNS cleanup.obrien2002-04-041-1/+2
|
* Cast ctype macros char arg to u_char to prevent sign extensionache2002-04-041-6/+6
|
* Add STANDARDS, ENVIRONMENT, and TABLES sections.obrien2002-04-041-11/+39
| | | | Obtained from: OpenBSD
* Minor word smithing.obrien2002-04-041-1/+1
|
* Follow suit with OpenBSD and NetBSD and tell the program name in diagnostics.obrien2002-04-041-6/+6
|
* Follow suit with OpenBSD and NetBSD and tell the program name in diagnostics.obrien2002-04-041-53/+59
|
* For -n use decimal point from localeache2002-04-041-1/+5
|
* Remove __Pache2002-04-047-52/+49
|
* Implement collating sortache2002-04-041-9/+29
|
* Fix to handle REC_D > 127 and fold case sorting of high lettersache2002-04-031-33/+132
| | | | (linear sorting still assumed, no collating support yet).
* There is breakage in parsedate, so revert to get_date until this can bemarkm2002-04-023-3/+8
| | | | | | resolved. Reported by: paul
* Fix find -exec with no command specified (i.e.: find . -exec ';')jmallett2002-04-021-0/+3
| | | | | | | PR: bin/36521 Submitted by: Simon 'corecode' Schubert <corecode@corecode.ath.cx> Reviewed by: mike MFC after: 3 days
* Connect ktrdump to the build. <cringe>.jake2002-04-021-0/+1
|
* Add a man page.jake2002-04-022-1/+83
| | | | Submitted by: davidc
* 1. Add missing include of stdint.h.jake2002-04-021-2/+3
| | | | | | 2. Fix reversed arguments to strcpy. Noticed by: davidc (2)
* Add myself.nork2002-04-021-0/+1
| | | | Reviewed by: knu (mentor)
* Fix SCM IDs.obrien2002-04-017-18/+14
|
OpenPOWER on IntegriCloud