X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=ChangeLog;h=5741d397160e7a7518806fc66e19712e9e4b3a7a;hb=3bfdc3f8ce227a2affeef5d3180d71f675ad87df;hp=eccf37fadd97bf5d18b62ff12a19e0ef0d1fd848;hpb=634baf4d87fa57158bec99c4e7969e804109d921;p=chaz%2Ftar diff --git a/ChangeLog b/ChangeLog index eccf37f..5741d39 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,134 @@ -2003-10-02 Sergey Poznyakoff +2003-11-14 Sergey Poznyakoff + + * src/create.c (start_header): Removed debugging hook + (dump_file): Fixed handling of linkname field. + * doc/tar.texi: Documented --format=ustar + +2003-11-14 Sergey Poznyakoff + + * src/tar.h (archive_format): USTAR_FORMAT: New type. + * src/create.c: Added POSIX.1-1988 support. + * src/names.c (safer_name_suffix): Skip leading ./ + * src/tar.c: New option --format=ustar forces + POSIX.1-1988 archive format. + * tests/delete03.sh: Updated. + * tests/extrac04.sh: Updated. + * tests/multiv01.sh: Updated. + +2003-11-13 Sergey Poznyakoff + + * src/list.c (read_and): Initialize current_stat_info + and extended_header at the start of the loop. + * src/names.c (all_names_found): Check if the argument + contains valid filename. Fixes coredump on `not_a_tar_file' + * src/xheader.c (atime_decoder,gid_decoder,ctime_decoder) + (mtime_decoder,size_decoder,uid_decoder): Use xstrtoumax. + Fixes `pax-big-10g' bug. + +2003-11-12 Paul Eggert + + Fix some C compatibility bugs reported by Joerg Schilling. + + * src/common.h (stripped_prefix_len): Fix misspelling + "stripped_path_len" in declaration. + * src/rmt.c (main): Use "return FOO;" rather than + "exit (FOO);"; we no longer have to worry about + pre-ANSI hosts that mishandled returned values from "main". + * src/tar.c (main): Likewise. This avoids warnings on some + compilers. + * src/system.c: Include signal.h, for 'kill'. + * src/system.h (DEV_BSIZE): Remove. + (DEFAULT_ST_BLKSIZE): New macro. + (ST_BLKSIZE): Use it, instead of DEV_BSIZE. + * src/tar.c (enum): Remove comma just before }. + +2003-11-12 Sergey Poznyakoff + + * src/list.c (decode_header): Initialize st_atime and + st_ctime. + +2003-11-11 Sergey Poznyakoff + + * configure.ac (tar_save_LIBS): Bugfix. Thanks Adrian + Bunk for reporting. + * doc/tar.texi: Fixed spelling. Thanks Martin Buchholz + for spotting. + +2003-11-04 Paul Eggert + + * src/xheader.c (xhdr_tab): Make it extern, not static, as C89 and + C99 require this. + +2003-10-26 Paul Eggert + + * src/system.c (sys_spawn_shell): Cast trailing null to (char *). + Bug reported by Christian Weisgerber. + +2003-10-19 Sergey Poznyakoff + + * AUTHORS: Updated + * NEWS: Updated + * src/tar.c (decode_options): Removed superfluous archive format + check + * doc/tar.texi: Documented new features. + +2003-10-08 Sergey Poznyakoff + + * NEWS: Updated + * THANKS: Added Wojciech Polak + * configure.ac: Added checks for missing functions. Raised + version number to indicate alpha release. + * lib/Makefile.am: Added missing headers + * lib/waitpid.c: Added missing includes. + * src/extract.c: Likewise. + * src/names.c: Removed spurious includes. + * src/xheader.c: Likewise. + * src/system.h [MSDOS]: Fixed spelling of EACCES. Added + macro overriding broken mkdir prototypes. + +2003-10-04 Sergey Poznyakoff + + * configure.ac: Check for dev_t and ino_t. + * m4/Makefile.am: Added missing files. + * src/system.c: New file. + * src/Makefile.am: Added system.c + * src/common.h: Prototypes for functions from system.c + * src/system.h (SET_BINARY_MODE, ERRNO_IS_EACCESS): New defines + * src/buffer.c: Moved system dependencies to system.c + * src/compare.c: Likewise. + * src/create.c: Likewise. + * src/delete.c: Likewise. + * src/extract.c: Likewise. + * src/rtapelib.c: Likewise. + +2003-10-04 Sergey Poznyakoff + + Implemented --occurrence option. + + * NEWS: Updated. + * src/tar.c: New option --occurrence. + * src/common.h (occurrence_option): New global + (struct name): Changed `found' member to `uintmax_t + found_count'. + (names_done): Removed + (all_names_found): Changed prototype. + (ISFOUND,WASFOUND): New macros + * src/delete.c (delete_archive_members): Honor --occurrence + option. + * src/list.c (read_and): Likewise. + * src/names.c: Count number of occurrences of each name in the + archive. + (name_match): Honor --occurrence option. + (names_done): Removed + (all_names_found,names_notfound): Rewritten. + +2003-10-02 Sergey Poznyakoff * src/tar.c: Removed extra precaution regarding subcommand_option == CAT_SUBCOMMAND - -2003-10-02 Sergey Poznyakoff + * lib/Makefile.am: Updated + +2003-10-02 Sergey Poznyakoff * src/common.h (names_done): New function. * src/names.c: Likewise.