summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
...
* BDECFLAGS cleanup (modulo long long issues). Add WARNS. Tested on alpha.kris2001-05-202-14/+17
| | | | Reviewed by: the great man himself (except alpha cleanups)
* Make this compile with WARNS=2kris2001-05-202-0/+3
|
* Removed -I${.CURDIR}/.../sys from CFLAGS.ru2001-05-182-3/+1
|
* BDECFLAGS cleanupkris2001-05-187-23/+32
|
* Fix an off-by-hour bug when crossing Daylight Saving Time boundary.ru2001-05-171-0/+3
| | | | | | PR: bin/27399 Submitted by: "Crist J. Clark" <crist.clark@globalstar.com> MFC after: 3 days
* Migrate from using MAXPATHLEN to MAX_PATH. Use strlcpy to copy theimp2001-05-163-5/+6
| | | | strings.
* Fix operation of df on unmounted filesystems, and add the ability to run dfkris2001-05-091-4/+38
| | | | | | on unmounted non-UFS filesystem using '-t' Submitted by: bde
* mdoc(7) police: fix markup, rename and reorder some sections.ru2001-05-082-78/+104
|
* mdoc(7) police: sort xrefs.ru2001-05-081-2/+2
|
* GC some dead code relating to running df on unmounted block devices,kris2001-05-082-37/+1
| | | | | | | | and remove the setgid operator bit from the installed binary: if you want to view free disk space on an unmounted device, you should have read permissions to access it. Reviewed by: phk
* Sync up with OpenBSD. Too many changes to note, but the major featureskris2001-05-0821-209/+1562
| | | | | | | | | | | | | | are: * Implement cpio compatibility mode when pax is invoked as cpio * Extend tar compatibility mode to cover many of the GNU tar single-letter options (bzip2 mode, aka -y/-j is not present in OpenBSD). When invoked as tar, pax is now full-featured enough for use by the ports collection to extract distfiles and create packages. * Many bug fixes to the operation of pax and the tar compatibility modes * Code fixes for things like correct string buffer termination. I tried to preserve existing FreeBSD fixes to this utility; please let me know if I have inadvertently spammed something.
* Add -z flag to pax to allow gzipping of archive output. Add -z and -Z (gzipkris2001-05-055-13/+107
| | | | | | | | | | | | | | and compress) to pax when used in tar mode (invoked as 'tar') for compatibility with GNU tar. bzip2 functionality for further GNU tar compatibility will be added at a later date. Note in the manpage that -z is non-standard. Obtained from: OpenBSD Reviewed by: -hackers MFC after: 2 weeks
* Depollute headers now that the VM headers DTRT.markm2001-05-033-3/+0
|
* Correct assignment of the resulting ACL allowing the mask entry tojedgar2001-05-031-1/+1
| | | | | | be properly set. Obtained from: TrustedBSD Project
* Compensate for header dethreading.markm2001-05-013-0/+3
|
* Document "chdir" builtin.dd2001-04-281-0/+4
|
* Fixed a typo.ru2001-04-271-1/+1
|
* Put a note that `-h' and `-n' is non-standard and provided only forsobomax2001-04-271-1/+6
| | | | | | compatibility purposes. Prompted by: ru
* Bring in `-h' compatability option and its alias `-n' to match NetBSD and GNUsobomax2001-04-262-14/+53
| | | | | | | semantics. style(9) Reviewed by: Obtained from: NetBSD
* Whitespace cleanup pass; reduce diffs with OpenBSD. No functional changes.kris2001-04-2610-80/+82
|
* Reduce diffs with OpenBSD:kris2001-04-2617-466/+468
| | | | | | | | | | | | | | | | #if __STDC__ -> #ifdef __STDC__ pax_warn() -> paxwarn() sys_warn() -> syswarn() (foo *)NULL -> NULL bcopy -> memmove()/memcpy() bzero -> memset() Typo fixes sprintf() -> snprintf() rindex() -> strrchr() index() -> strchr() sys_errlist[] -> strerror() Obtained from: OpenBSD
* Use mkstemp() for secure tempfile creation instead of tempnam()kris2001-04-264-17/+39
| | | | | Obtained from: OpenBSD Reviewed by: mikeh
* o Separate acl_t into internal and external representations asjedgar2001-04-245-98/+168
| | | | | | | | | | | required by POSIX.1e. This maintains the current 'struct acl' in the kernel while providing the generic external acl_t interface required to complete the ACL editing library. o Add the acl_get_entry() function. o Convert the existing ACL utilities, getfacl and setfacl, to fully make use of the ACL editing library. Obtained from: TrustedBSD Project
* mdoc(7) police: normalize .Nd.ru2001-04-182-2/+2
|
* -Wnon-const-format sweep: make format strings const char *'s, addkris2001-04-1711-36/+37
| | | | | | __printflike()/__printf0like() to function prototypes, as appropriate. Reviewed by: bde, -audit
* Convert getfacl to the ACL editing library functions. getfacl shouldjedgar2001-04-131-23/+71
| | | | | | | | now compile/work on any POSIX.1e-compliant implementation (also tested against the current Linux patches). Review by: rwatson Obtained from: TrustedBSD Project
* Correct some markupbrian2001-04-121-2/+4
| | | | Submitted by: bde
* Introduce -osid and -otsidbrian2001-04-112-0/+8
| | | | Submitted by: dd
* Correct the following defines to match the POSIX.1e spec:jedgar2001-04-111-9/+9
| | | | | | | | ACL_PERM_EXEC -> ACL_EXECUTE ACL_PERM_READ -> ACL_READ ACL_PERM_WRITE -> ACL_WRITE Obtained from: TrustedBSD
* ``|'' should be more binding than ``!'' so that this isn't broken:brian2001-04-091-2/+13
| | | | | | | | if ! echo bla | wc -c ; then echo broken fi Obtained from: NetBSD
* Remove tsess for now.brian2001-04-071-2/+0
| | | | This (and sess) may come back shortly.
* Update documentation in line with what the code doesbrian2001-04-071-9/+1
| | | | | | PR: 25435 Submitted by: dd Forgotten by: mckusick
* The sess column went away last December with v1.26 of keyword.cbrian2001-04-071-1/+1
| | | | | | Remove it from ``jfmt''. Forgotten by: mckusick
* setfacl and getfacl no longer need to link against libposix1e, since ittmm2001-04-042-4/+0
| | | | | | | has been integrated into libc. Approved by: rwatson Obtained from: TrustedBSD Project
* A much better (more correct) fix for handling ``!'' charactersbrian2001-04-041-23/+40
| | | | Obtained from: NetBSD
* Handle ``!'' characters when they appear as second and subsequentbrian2001-04-041-0/+3
| | | | | | | | parts of an && or || expression. This makes this expression work as expected: if true && ! false; then echo yes; fi
* Drop support for -DRELEASE_BUILD_FIXIT and -DCRUNCHED_BINARY inru2001-04-031-1/+1
| | | | ${CFLAGS}. The only supported method thus is -DRELEASE_CRUNCH.
* Remove a comment which seemed to confuse makewhatis:ben2001-03-291-1/+0
| | | | | | | | ben@freefall:~$ whatis ed ed(1), -(1) - ed, red text editor PR: 25164 Submitted by: Rich Morin <rdm@cfcl.com>
* MAN[1-9] -> MAN.ru2001-03-275-6/+4
|
* Fix error reporting of delayed send errors.fenner2001-03-261-1/+1
|
* mdoc(7) police: fix markup and some spelling.ru2001-03-232-66/+99
|
* Silence minor cc warningache2001-03-211-1/+1
|
* Use nl_langinfo instead of %Efache2001-03-211-6/+16
|
* Use nl_langinfo instead of %Efache2001-03-211-6/+7
|
* Remove extra CFLAGSjedgar2001-03-201-2/+1
| | | | | | Add DPADD Submitted by: bde
* Remove extra CFLAGS and redundant SRCSjedgar2001-03-201-2/+1
| | | | | | Add DPADD Submitted by: bde
* Remove 'NOSHARED=yes' (../Makefile.inc already sets this)jedgar2001-03-192-3/+0
|
* o Missed in addition of setfacl.h in setfacl(1)rwatson2001-03-191-0/+76
|
* o Missed in prior commit: getfacl(1) Makefilerwatson2001-03-191-0/+9
|
* o Enable getfacl(1) and setfacl(1)rwatson2001-03-191-0/+2
| | | | Obtained from: TrustedBSD Project
OpenPOWER on IntegriCloud