Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Get this area compiling with the highest WARNS= that it works with. | markm | 2003-06-13 | 1 | -1/+0 |
| | | | | | | | Obsolete WFORMAT= junk also removed where possible. OK'ed by: obrien Tested on: sparc64, alpha, i386 | ||||
* | Fix a bazillion warnings. This makes almost the whole of src/bin/* | markm | 2003-05-03 | 11 | -75/+88 |
| | | | | | | WARNS=6, std=c99 clean. Tested on: i386, alpha | ||||
* | Quiet warnings about copyright[]. | obrien | 2003-05-02 | 1 | -2/+2 |
| | |||||
* | Fix signed/unsigned mix comparisons involving sizeof. | obrien | 2003-05-02 | 3 | -11/+13 |
| | |||||
* | Add the -j and -y options to the synopsis. | tjr | 2003-05-01 | 1 | -1/+1 |
| | |||||
* | Make the "tarcp" example more direct. | obrien | 2003-01-10 | 1 | -5/+5 |
| | |||||
* | Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup, | schweikh | 2003-01-01 | 10 | -21/+21 |
| | | | | especially in troff files. | ||||
* | Ensure all va_starts have a matching va_end. | tjr | 2002-10-06 | 1 | -1/+1 |
| | | | | Obtained from: NetBSD | ||||
* | /dev/sa0 is the default tape device, not /dev/rst0. | tjr | 2002-10-06 | 2 | -6/+6 |
| | |||||
* | Fix format string errors relating mainly to the use of %qu to print off_t's. | tjr | 2002-10-06 | 4 | -9/+15 |
| | | | | | | | | | Instead use %ju and cast the argument. WFORMAT=0 is still required in the Makefile because gcc warns about some strftime() calls (I don't think this behaviour is useful.) Tested on: sparc64, alpha, i386 | ||||
* | Removed extra $FreeBSD$. Moved #if 0 for the vendor id to the correct | bde | 2002-08-22 | 1 | -5/+3 |
| | | | | place. Restored indent protection of copyright comment. | ||||
* | s/filesystem/file system/ as discussed on -developers | trhodes | 2002-08-21 | 13 | -37/+37 |
| | |||||
* | Fix a couple of typos in a comment. | keramida | 2002-07-15 | 2 | -3/+3 |
| | | | | | PR: docs/33559 Submitted by: Marc Olzheim <marcolz@ilse.nl> | ||||
* | Consistently use FBSDID | obrien | 2002-06-30 | 16 | -31/+32 |
| | |||||
* | more file system > filesystem | trhodes | 2002-05-16 | 1 | -1/+1 |
| | |||||
* | Consistancy check s/file system/filesystem/ | trhodes | 2002-05-16 | 12 | -33/+33 |
| | | | | Reviewed by: brian | ||||
* | Use `The .Nm utility' | charnier | 2002-04-21 | 1 | -23/+24 |
| | |||||
* | Use `The .Nm utility' | charnier | 2002-04-20 | 2 | -5/+5 |
| | |||||
* | Do not return(f_returning_void());. Spell FALLTHROUGH to make it lint()able. | charnier | 2002-04-12 | 1 | -9/+15 |
| | |||||
* | No need to cast; ().gr_gid is already the correct type. | markm | 2002-03-22 | 1 | -1/+1 |
| | |||||
* | Correct inadvertent style botches in previous commit. | kris | 2002-02-04 | 1 | -2/+1 |
| | |||||
* | Lock down with WFORMAT=1 except those directories with unfixed warnings. | kris | 2002-02-04 | 1 | -0/+2 |
| | | | | Tested on i386 and alpha. | ||||
* | Ooops, forgot to remove the registers here. | imp | 2002-02-02 | 14 | -318/+318 |
| | |||||
* | o __P has been reoved | imp | 2002-02-02 | 17 | -1342/+181 |
| | | | | | | | | | o Old-style K&R declarations have been converted to new C89 style o register has been removed o prototype for main() has been removed (gcc3 makes it an error) o int main(int argc, char *argv[]) is the preferred main definition. o Attempt to not break style(9) conformance for declarations more than they already are. | ||||
* | Default to WARNS=2. Binary builds that cannot handle this must explicitly | obrien | 2001-12-04 | 1 | -0/+1 |
| | | | | | | set WARNS=0. Reviewed by: mike | ||||
* | Use a quad int conversion routine for time_t instead of ulong, capable of | dillon | 2001-10-28 | 1 | -2/+4 |
| | | | | decoding tar's full time buffer (12 digits). | ||||
* | Various string fields for certain cpio types are 11 rather then 8 | dillon | 2001-10-28 | 1 | -6/+15 |
| | | | | | | | | | characters. Use quad conversion functions rather then long conversion where appropriate to handle the available range. Mainly fixes time_t but there was also a st_size ulong conversion in there that has to be quad or cpio cannot be used to copy files > 2G. MFC after: 1 day | ||||
* | Remove unnecessary casts in timeval.tv_sec load from st_*time | dillon | 2001-10-28 | 1 | -4/+4 |
| | |||||
* | mdoc(7) police: s/BSD/.Bx/ where appropriate. | ru | 2001-08-14 | 1 | -1/+4 |
| | |||||
* | Initialize listf at main() | peter | 2001-08-13 | 1 | -1/+2 |
| | |||||
* | mdoc(7) police: join split punctuation to macro calls. | ru | 2001-08-10 | 1 | -7/+6 |
| | |||||
* | Remove whitespace at EOL. | dd | 2001-07-15 | 1 | -39/+39 |
| | |||||
* | mdoc(7) police: removed HISTORY info from the .Os call. | ru | 2001-07-10 | 1 | -1/+6 |
| | |||||
* | mdoc(7) police: remove extraneous .Pp before and/or after .Sh. | dd | 2001-07-09 | 1 | -2/+0 |
| | |||||
* | Fix the type of the NULL arg to execl() | brian | 2001-07-09 | 1 | -1/+2 |
| | | | | Idea from: Theo de Raadt <deraadt@openbsd.org> | ||||
* | Include missing header files which define functions for which gcc has | dd | 2001-06-24 | 1 | -0/+1 |
| | | | | builtins (e.g., exit, strcmp). | ||||
* | Minor comment fix | imp | 2001-05-30 | 1 | -1/+1 |
| | |||||
* | mdoc(7) police: fix markup, rename and reorder some sections. | ru | 2001-05-08 | 2 | -78/+104 |
| | |||||
* | mdoc(7) police: sort xrefs. | ru | 2001-05-08 | 1 | -2/+2 |
| | |||||
* | Sync up with OpenBSD. Too many changes to note, but the major features | kris | 2001-05-08 | 21 | -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 (gzip | kris | 2001-05-05 | 5 | -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 | ||||
* | Whitespace cleanup pass; reduce diffs with OpenBSD. No functional changes. | kris | 2001-04-26 | 10 | -80/+82 |
| | |||||
* | Reduce diffs with OpenBSD: | kris | 2001-04-26 | 17 | -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() | kris | 2001-04-26 | 4 | -17/+39 |
| | | | | | Obtained from: OpenBSD Reviewed by: mikeh | ||||
* | -Wnon-const-format sweep: make format strings const char *'s, add | kris | 2001-04-17 | 2 | -9/+9 |
| | | | | | | __printflike()/__printf0like() to function prototypes, as appropriate. Reviewed by: bde, -audit | ||||
* | Use nl_langinfo instead of %Ef | ache | 2001-03-21 | 1 | -6/+16 |
| | |||||
* | POSIX wrote: | ru | 2001-03-02 | 3 | -30/+11 |
| | | | | | | | | | | | | | : LC_TIME This variable shall determine the format and : contents of date and time strings when the -v : option is specified. Developers took this wrong. LC_TIME specifies the locale name, not the ``format'' argument of strftime(). Oops: pax -w -f /tmp/foo /dev/null LC_TIME=de_DE.ISO_8859-1 pax -v -f /tmp/foo | ||||
* | mdoc(7) police: use the default ``file ...'' feature of the .Ar macro. | ru | 2001-02-13 | 1 | -2/+2 |
| | |||||
* | Fix typo: seperate -> separate. | asmodai | 2001-02-06 | 1 | -1/+1 |
| | | | | | | Seperate does not exist in the english language. Submitted to look at by: kris | ||||
* | mdoc(7) police: split punctuation characters + misc fixes. | ru | 2001-02-01 | 1 | -5/+5 |
| |