History log of /netbsd-current/bin/pax/cpio.c
Revision Date Author Comments
# 1.22 09-Aug-2012 christos

PR/46786: Simon Burge: After conversion to 64 bit time_t, tar/pax/cpio
erroneously think that negative time_t's never fit in 32 bits. Rework
conversion code to always use uintmax_t, and detect negative values.
XXX[1]: Perhaps we should do the same (use a signed conversion) for all
fields not just for time_t
XXX[2]: pullup for 6


# 1.21 26-Mar-2011 martin

branches: 1.21.4;
Fix bogus paranthesis, From Henning Peternse in PR bin/44773.


# 1.20 14-Feb-2009 lukem

fix -Wsign-compare issues


# 1.19 11-Feb-2006 dsl

branches: 1.19.28;
Change all the 'return(x)' to 'return c'.
Makes some other searches I want to do a bit easier.


# 1.18 03-Feb-2005 matt

Don't write hardlinked file contents in sv4cpio mode.


# 1.17 26-Oct-2003 lukem

branches: 1.17.4;
Overhaul how `build.sh tools' are used:

* Rename "config.h" to "nbtool_config.h" and
HAVE_CONFIG_H to HAVE_NBTOOL_CONFIG_H.
This makes in more obvious in the source when we're using
tools/compat/config.h versus "standard autoconf" config.h

* Consistently move the inclusion of nbtool_config.h to before
<sys/cdefs.h> so that the former can provide __RCSID() (et al),
and there's no need to protect those macros any more.

These changes should make it easier to "tool-ify" a program by adding:
#if HAVE_NBTOOL_CONFIG_H
#include "nbtool_config.h"
#endif
to the top of the source files (for the general case).


# 1.16 13-Oct-2003 agc

Move Keith Muller's code from a 4-clause to a 3-clause licence by removing
the advertising clause. Diffs provided in PR 22397 by Joel Baker, confirmed
to the board by Keith Muller.


# 1.15 07-Aug-2003 agc

Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22249, verified by myself.


# 1.14 02-Feb-2003 wiz

Fix various spelling, grammar, and punctuation problems in comments, from Sergey Svishchev in PR 20164.


# 1.13 11-Feb-2002 wiz

branches: 1.13.2;
achive is not a good word.


# 1.12 31-Jan-2002 tv

Protect __RCSID and __COPYRIGHT from being invoked if not defined.


# 1.11 24-Oct-2001 lukem

- ansi KNF (just remove all the #ifndef __STDC__ prototype junk,
leaving the ansi stuff)
- use longlong_t instead of quad_t (etc), and rename *uqd*() -> *ull*()
- clean up the NET2_STAT stuff similar to ftpd; provide #defines and
macros which select which cast to use, etc
- clean up the NET2_FTS and NET2_REGEX #define use


# 1.10 04-Jan-2001 lukem

use more standard %ll_ in favour of %q_


# 1.9 16-Feb-2000 itohy

Cleanup and fix typos.
Partially from FreeBSD.


# 1.8 28-Feb-1998 mrg

rename variable to "cpio_swp_head"


# 1.7 20-Jul-1997 christos

- Rename local warn so tty_warn that we can include <err.h> since this program
uses err() and errx().
- Fix printf format strings.
- Added WARNS=1; note
- Added missing prototypes.
- Split overloaded trail function into trail() and subtrail().


# 1.6 10-Jan-1997 tls

kill 'register'


# 1.5 21-Mar-1995 cgd

convert to new RCS id conventions.


# 1.4 23-Sep-1994 mycroft

Eliminate uses of some obsolete functions.


# 1.3 13-Jun-1994 mycroft

Fix up RCS ids.


# 1.2 12-Jun-1994 jtc

Add RCS ID's


# 1.1 12-Jun-1994 jtc

branches: 1.1.1;
Initial revision


# 1.1.1.1 12-Jun-1994 jtc

From 4.4 lite


# 1.13.2.2 15-Jun-2004 jmc

fix botched pullup from ticket #1021 and make sure this compiles on
non-NetBSD hosts again. Also fixes PR#24481


# 1.13.2.1 07-Apr-2004 jmc

Pullup rev 1.14-1.17 (requested by rafal in ticket #1021)

Pullup pax to current version on trunk. Includes many fixes.


# 1.17.4.1 05-May-2005 riz

Pull up revision 1.18 (requested by matt in ticket #1164):
Don't write hardlinked file contents in sv4cpio mode.


# 1.19.28.1 13-May-2009 jym

Sync with HEAD.

Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html


# 1.21.4.1 30-Oct-2012 yamt

sync with head