summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Added the EXIT STATUS section where appropriate.ru2005-01-1779-81/+83
|
* Eliminate macro calls inside literal displays.ru2005-01-152-10/+6
|
* Markup nit.ru2005-01-151-2/+1
|
* Fix off-by-one error.stefanf2005-01-141-1/+1
|
* Don't reprint file names unnecessarily.brian2005-01-121-4/+4
| | | | | | PR: 75028 Submitted by: mteterin at 250-217 dot customer dot cloud9 dot net MFC after: 7 days
* Get the vnode from file.f_vnode instead of file.f_data.ssouhlal2005-01-111-2/+2
| | | | | | | | | | | Nowadays, f_data points to the vnode only if the underlying filesystem doesn't use it for other purposes (devfs uses it to store the cdev, for example). Found by: csjp Reviewed by: csjp Approved by: phk, wes, grehan (mentor) MFC after: 1 week
* Scheduled mdoc(7) sweep.ru2005-01-119-19/+18
|
* Formatting fixes.ru2005-01-111-9/+11
| | | | (This exposes a bug in mdoc(7) for which a patch has been sent upstream.)
* Bump WARNS to 4 as this seems OK on the alpha now.dwmalone2005-01-101-1/+1
|
* Cast size_t to off_t before adding them to avoid warnings on the alpha.dwmalone2005-01-102-4/+6
| | | | Use %ld and intmax_t for printing an off_t.
* Some variables became unused or global in the last change to thisdwmalone2005-01-101-9/+5
| | | | | | | file. Remove the now redundant declarations. Add declarations for the new show and set_events functions and make them static.
* Use 64bit 'fts_bignum' field instead of 32bit (on 32bit archs) fieldpjd2005-01-071-11/+13
| | | | | | | | | | | | 'fts_number' to remember number of blocks. This makes du(1) 64bit-clean. This work is part of the BigDisk project: http://www.FreeBSD.org/projects/bigdisk/ Discussed on: arch@ MFC after: 5 days
* Fix a typo in comment.cognet2005-01-051-1/+1
| | | | Reviewed by: mux (mentor)
* evise use of queue(9) macros for netipx when used from userspace:rwatson2005-01-021-11/+5
| | | | LIST_FOREACH() is difficult to use correctly, so don't try to.
* Add a newline at the end of the file to silence warnings.ceri2005-01-011-1/+1
| | | | | | PR: conf/75347 Submitted by: Gareth Redman <gredman at hyper dot net dot nz> MFC after: 1 day
* Apply a simplifying patch submitted by rik to the IPX support inrwatson2004-12-311-34/+14
| | | | | | | | | | | netstat(1): - Make previously unnecessarily global variables local. - Use LIST_FOREACH() in preference to manual iteration. - Restore a sanity check through slightly incestuous use of queue macro knowledge. Submitted by: rik
* Update netstat(1) for recent conversion of netipx to queue(9) fromrwatson2004-12-312-4/+24
| | | | | | | home-brew linked lists. Read in the ipxpcb_list structure first in order to find the first pcb pointer. Then follow the chain as before, only the termination condition is a NULL next pointer rather than a next pointer equal to the original offset.
* NO_NIS cleanup: LINKS and MLINKSache2004-12-291-0/+2
|
* More NO_NIS cleanup: LINKS and MLINKSache2004-12-291-0/+4
|
* Update for FILE v4.12.ru2004-12-281-6/+9
|
* Update for FILE v4.12.ru2004-12-281-48/+70
|
* Catch up with file 4.12 import.obrien2004-12-281-2/+2
|
* Remove warnings and make wc WARNS=6 clean.josef2004-12-272-6/+4
| | | | | | Add FreeBSD Id to Makefile. Approved by: ssouhlal
* Look into machine-specific manpage subdirectories too.ru2004-12-222-4/+18
| | | | | PR: bin/72243 MFC after: 3 weeks
* Fixed the only warning and mark as WARNS=6 clean.ru2004-12-222-1/+3
|
* - Fixed handling of manpage subdirectories:ru2004-12-221-20/+12
| | | | | | | | | | catman /usr/share/man/man8 cd /usr/share/man; catman man8 - Don't print false warnings about invalid cat pages which are machine-specific cat page subdirectories (visible with -v). - Fixed one memory leak.
* Add a fallback version of fnmatch() to the bsdtarkientzle2004-12-223-9/+170
| | | | | | | | | source code. Include configure logic to pick up the system one when it exists and use the fallback version when it doesn't exist. Set the default for FreeBSD to use the system version. With this, bsdtar should now be quite portable.
* GC an unused #includekientzle2004-12-221-1/+0
|
* Fix -W long option handling.kientzle2004-12-221-5/+15
| | | | | | | | | | | In particular: -W excl=text fails because "excl" is a prefix of both "exclude" and "exclude-from". But, -W exclude=text is okay because it matches "exclude" exactly. Thanks to: Jose F Nieves MFC after: 7 days
* Portability: the included fts.c should nowkientzle2004-12-222-2/+2
| | | | | | | compile on many non-FreeBSD systems, including Linux, Solaris, Darwin, etc. Thanks to: many people who pointed out the same portability problem
* NOCRYPT -> NO_CRYPTru2004-12-213-3/+3
|
* NOSHARED -> NO_SHAREDru2004-12-211-1/+1
|
* NODOCCOMPRESS -> NO_DOCCOMPRESSru2004-12-211-2/+2
| | | | | | | | NOINFO -> NO_INFO NOINFOCOMPRESS -> NO_INFOCOMPRESS NOLINT -> NO_LINT NOPIC -> NO_PIC NOPROFILE -> NO_PROFILE
* NOATM -> NO_ATMru2004-12-211-1/+1
|
* Start the dreaded NOFOO -> NO_FOO conversion.ru2004-12-2112-12/+12
| | | | OK'ed by: core
* Fix compilation for the USE_KQUEUE case.harti2004-12-201-0/+4
| | | | Submitted by: Emil Mikulic <emikulic@dmr.ath.cx>
* maxJobs is declared extern in job.h so it cannot be static in job.c.harti2004-12-201-1/+1
| | | | | PR: bin/75210 Submitted by: Andreas Jochens; Robert Millan <rmh@debian.org>
* Sort by month/day/year/login.ru2004-12-201-6/+6
|
* Add myself.marks2004-12-191-0/+1
|
* Use the accepted abbreviation "kB" for kilobyte, rather than "kb" (whichcperciva2004-12-191-7/+7
| | | | is the common unit for a kilobit).
* Specify the state of my birth, similar to other entries.brueffer2004-12-181-1/+1
|
* Remove all the cleanup functions. There is no reason to free memoryharti2004-12-1710-185/+6
| | | | | just before exiting (especially given the number of memory leaks) - it just costs time.
* Fix a long-standing bug when make(1) is passed the -V andru2004-12-161-8/+5
| | | | | | | | -f options in MAKEFLAGS environment variable, and some of these options are also specified on the command line. Thanks to: marcel Reviewed by: harti
* Instead of dynamically allocating list heads allocated them staticallyharti2004-12-1620-651/+530
| | | | | | | | now that their size is only two pointers. This eliminates a lot of calls to Lst_Init and from there to malloc together with many calls to Lst_Destroy (in places where the list is obviously empty). This also reduces the chance to leave a list uninitilized so we can remove more NULL pointer checks and probably eliminates a couple of memory leaks.
* Correct the event of 17 December 1770: Ludwig van Beethoven wasgrog2004-12-161-1/+1
| | | | | | | | christened. We don't know whether he was born on the same or the previous day. From: Die Musik in Gecshichte und Gegenwart (Bärenreiter, Kassel, 1989), 1:1509
* Correct the dates and locations relating to Ludwig van Beethoven'sgrog2004-12-161-1/+1
| | | | | | | | | | birth: 1. Remove anachronistic "Germany". Depending on your viewpoint, he was born in the Rheinland or Prussia. 2. Remove reference to his date of birth. It's not known, though it's possible it was 16t or 17 December. 3. Get the date of his christening right.
* If ferror is true, we must reset the error indicator.ssouhlal2004-12-151-0/+1
| | | | | Submitted by: Liam J. Foy <liamfoy@sepulcrum.org> Approved by: grehan (mentor)
* Add myself to the committers' birthday calendarniels2004-12-131-0/+1
| | | | Approved by nectar (mentor)
* Bump document date before ru gets me.ceri2004-12-111-1/+1
|
* Add a -k flag for querying whois.krnic.net (the National Internetceri2004-12-112-3/+13
| | | | | | | Development Agency of Korea) which hold details of IP address allocations within Korea. Approved by: bms
OpenPOWER on IntegriCloud