]> Dogcows Code - chaz/tar/blob - ChangeLog
Update
[chaz/tar] / ChangeLog
1 2006-06-13 Sergey Poznyakoff <gray@gnu.org.ua>
2
3 * doc/Makefile.am (check-options): Expand macros before grepping
4 in $(info_TEXINFOS)
5 * doc/rendition.texi (FIXME) [!PROOF_FOOTNOTED]: Enclose in a
6 cartouche
7 * doc/tar.texi: Define op as codeindex. Use special macros to
8 populate it
9 Consequently prefer @dfn{long options} over @dfn{mnemonic
10 options}.
11 Document --unquote, --no-unquote
12 (Short Option Summary): Build a table of cross-references to the
13 corresponding long options.
14 * doc/value.texi (xopindex,opsummary): New macros
15
16 * doc/Makefile.am (check-options): New goal
17 * doc/tar.texi: Update
18 * src/tar.c: Implement --overwrite-dir option (long ago
19 documented).
20
21 2006-06-12 Sergey Poznyakoff <gray@gnu.org.ua>
22
23 * doc/tar.texi: Document better the --totals option
24 * NEWS: Update
25 * src/buffer.c (total_blocks_deleted): New variable
26 (set_start_time): Set volume_start_time and last_stat_time as well
27 (set_volume_start_time): New function
28 (compute_duration): Do not call set_start_time, update
29 last_stat_time instead. Use it in calculation instead of
30 start_time, which is now set only once, upon startup.
31 (print_total_written): Removed.
32 (print_total_stats): New function for printing byte/speed statistics.
33 (_open_archive): Detect attempts to update compressed archives.
34 (_gnu_flush_write): Always update prev_written.
35 (open_archive): Call set_volume_start_time.
36 * src/common.h (volume_start_time,last_stat_time): New globals
37 (print_total_written): Replaced with:
38 (print_total_stats): New function
39 * src/delete.c (records_skipped): Remove static qualifier, the
40 variable is used by print_total_stats in buffer.c
41 * src/extract.c (check_time): Use volume_start_time when checking
42 for timestamp plausability.
43 * src/tar.c: (options, parse_opt): Allow for optional argument to
44 the --totals option, which specifies a signal upon delivery of which
45 the statistics must be output.
46 (main): Call print_total_stats if total_option is set.
47
48 2006-06-11 Sergey Poznyakoff <gray@gnu.org.ua>
49
50 * src/xheader.c (xheader_set_single_keyword): Fix typo.
51 (decode_time): Avoid using gotos.
52
53 * doc/mastermenu.el: New file
54 * doc/Makefile.am (master-menu): New goal
55 * doc/tar.texi: Update master menu
56
57 2006-06-10 Sergey Poznyakoff <gray@gnu.org.ua>
58
59 * doc/tar.texi: Remove leftover include
60
61 2006-06-09 Sergey Poznyakoff <gray@gnu.org.ua>
62
63 * doc/Makefile.am (tar_TEXINFOS): Add intern.texi
64 (EXTRA_DIST): Remove convtexi.pl, add texify.sed
65 * doc/intern.texi: New file
66 * doc/convtexi.pl: Remove
67 * doc/texify.sed: Auxiliary script to convert ../src/tar.h to
68 header.texi
69 * doc/rendition.texi: Fix typo
70 * doc/tar.texi: Update
71 * src/tar.h: Fix indentation, introduce end-of-format marker for
72 texify.sed
73
74 * THANKS: Add Jason Armistead
75 * doc/tar.texi: Update
76 * NEWS: Update
77 * src/buffer.c: Implement more flexible checkpoint style
78 * src/common.h (checkpoint_option): Change type to unsigned
79 (checkpoint_style): New variable.
80 * src/tar.c: --checkpoint takes an optional argument specifying
81 number of records between two successive checkpoints (proposed
82 by Jason Armistead on 2004-06-22). Optional dot starting the
83 argument means "print dots instead of textual checkpoints".
84 (tar_help): New function
85 * src/transform.c: Minor fixes.
86
87 2006-06-08 Sergey Poznyakoff <gray@gnu.org.ua>
88
89 * gnulib.modules: Add mkdtemp
90 * doc/dumpdir.texi: New file
91 * doc/Makefile.am (tar_TEXINFOS): Add dumpdir.texi
92 * doc/tar.texi: Document dumpdir format
93 * src/incremen.c (dumpdir_locate,obstack_code_rename):
94 (purge_directory): Re-implement renaming. Introduce
95 'X' control code.
96 (make_tmp_dir_name): Remove
97
98 * src/transform.c (set_transform_expr,_transform_name_to_obstack):
99 Implement NUMBER flag.
100 (add_char_segment): Fix length assignement
101
102 * doc/tar.texi: Update
103
104 2006-06-07 Sergey Poznyakoff <gray@gnu.org.ua>
105
106 * src/transform.c (transform_name_fp): Run fun even if
107 _transform_name_to_obstack returns false.
108 (_transform_name_to_obstack,set_transform_expr): Implement GNU
109 extension case conversion operations.
110
111 * doc/tar.texi (transform): Document the option.
112
113 2006-06-02 Sergey Poznyakoff <gray@gnu.org.ua>
114
115 * NEWS: Update
116 * src/common.h (set_transform_expr): New function
117 * tests/Makefile.am: Add incr04.at
118 * tests/testsuite.at: Likewise
119 * tests/incr04.at: New test case
120 * tests/long01.at: Fix typo in the comment
121 * tests/multiv04.at: Use genfile --files-from
122
123 (Above changes need new genfile.c from paxutils)
124
125 * TODO: Update
126 * NEWS: Update
127 * doc/tar.texi: Update
128 * src/transform.c: New file
129 * src/Makefile.am (tar_SOURCES): New module transform.c
130 * src/common.h (transform_name, transform_name_fp): New functions
131 (show_stored_names_option): Renamed to
132 show_transformed_names_option. All uses changed
133 * src/create.c (dump_file0): Transform file name
134 * src/extract.c (extract_archive): safer_name_suffix and
135 stripped_prefix_len are now called by decode_header
136 * src/list.c (print_header): Update displayable name selection.
137 * src/tar.c: New option --transform
138 New option --show-transformed-names generalizes
139 --show-stored-names. The latter is retained as an alias.
140
141 2006-05-31 Sergey Poznyakoff <gray@gnu.org.ua>
142
143 * src/incremen.c (make_directory): Fix initialization of struct
144 directory.
145
146 2006-05-25 Sergey Poznyakoff <gray@gnu.org.ua>
147
148 * doc/tar.texi: Document use of globbing patterns.
149 * src/tar.c (parse_opt): Add comment before --preserve case.
150
151 2006-05-24 Sergey Poznyakoff <gray@gnu.org.ua>
152
153 * NEWS: Update
154 * doc/tar.texi: Update
155 * configure.ac (AM_INIT_AUTOMAKE): Use tar-ustar option. Raise
156 version requirement to 1.9
157 * src/common.h (struct name): Refactured
158 (warn_regex_usage): New variable.
159 (dump_file): First argument is const char*.
160 (name_init,name_add): Removed
161 (name_add_name,name_add_dir): New functions
162 (name_next): Return const char*.
163 * src/create.c: (dump_file,dump_file0): First argument is const
164 char*. All callers updated.
165 * src/names.c: Rewritten handling of member names in the command
166 line. Tar no longer attempts to guess globbing patterns, instead
167 it relies on --wildcard option.
168 (init_names): Removed.
169 (struct name_elt): New structure.
170 (name_array): Change type to struct name_elt. All references updated
171 (name_add_name,name_add_dir): New functions
172 (name_next_elt): New function
173 (name_next): Rewritten using name_next_elt.
174 (namelist_match): Rewritten pattern matching using
175 exclude_fnmatch.
176 (names_notfound): Warn if globbing patterns were used without
177 --wildcards option
178 * src/tar.c (options): Move globbing-related options into a
179 separate group. Set -l as an alias to --check-links, as required
180 by UNIX98
181 (struct tar_args): New fields
182 wildcards,matching_flags,include_anchored
183 (MAKE_EXCL_OPTIONS,MAKE_INCL_OPTIONS): New macros
184 (parse_opt): Use x2nrealloc to grow archive_name_array.
185 Use MAKE_EXCL_OPTIONS,MAKE_INCL_OPTIONS to create appropriate
186 fnmatch options, and name_add_name,name_add_dir to handle member
187 name and -C arguments.
188 (decode_options): Likewise
189 (main): Remove call to init_names.
190
191 * tests/append.at, tests/append01.at, tests/extrac01.at,
192 tests/options.at, tests/options02.at, tests/same-order01.at,
193 tests/same-order02.at: Make AT_SETUP more readable.
194
195 2006-05-23 Sergey Poznyakoff <gray@gnu.org.ua>
196
197 * src/buffer.c (change_tape_menu): Fix typo (uninitialized
198 variable) introduced yesterday.
199
200 2006-05-22 Sergey Poznyakoff <gray@gnu.org.ua>
201
202 * doc/tar.texi: Use @var{file_name} instead of @var{file name}
203 * src/buffer.c (change_tape_menu): Break the loop after obtaining
204 new archive name. Check for empty input line.
205
206 2006-05-15 Sergey Poznyakoff <gray@gnu.org.ua>
207
208 * tests/atlocal.in (XFAILFILE): New variable
209 * tests/version.at: Create $XFAILFILE on failure
210 * tests/testsuite.at (AT_TAR_CHECK): Declare expected failure if
211 $XFAILFILE exists.
212
213 2006-05-13 Sergey Poznyakoff <gray@gnu.org.ua>
214
215 * THANKS: Update
216 * src/buffer.c (read_header0): Use read_header_primitive to avoid
217 clubbering current_tar_info. All callers updated.
218 * src/common.h (read_header_primitive): New function
219 * src/extract.c (extract_volhdr): New function
220 (prepare_to_extract): Use extract_volhdr as extractor for volume
221 names.
222 * src/list.c (read_header_primitive): New function
223 (read_header): Front end for read_header_primitive
224 * tests/chtype.at: New file
225 * tests/volsize.at: New file
226 * tests/Makefile.am (TESTSUITE_AT): Add chtype.at, volsize.at
227 (check-full): New target.
228 * tests/atlocal.in (TEST_DATA_URL,STAR_DATA_URL)
229 (STAR_TESTSCRIPTS): Provide default values.
230 (tarball_prereq): New function
231 * tests/testsuite.at (AT_TARBALL_PREREQ): New defun
232 (AT_STAR_PREREQ): Rewrite using tarball_prereq
233 Include chtype.at and volsize.at
234 * tests/volume.at: Add keywords.
235
236 * tests/star/gtarfail.at, tests/star/gtarfail2.at,
237 tests/star/multi-fail.at, tests/star/pax-big-10g.at,
238 tests/star/ustar-big-2g.at, tests/star/ustar-big-8g.at
239 (AT_STAR_PREREQ): Provide md5 sum.
240
241 * lib/.cvsignore: Update
242
243 2006-05-08 Sergey Poznyakoff <gray@gnu.org.ua>
244
245 * tests/testsuite.at (AT_SORT_PREREQ, AT_UNPRIVILEGED_PREREQ): New
246 defines
247
248 * tests/extrac04.at, tests/incr03.at, tests/listed02.at,
249 tests/pipe.at, tests/rename01.at, tests/rename02.at,
250 tests/rename03.at, tests/same-order01.at: Call
251 AT_SORT_PREREQ. Remove fd 2 redirection after calls to sort
252 * ignfail.at: Call AT_UNPRIVILEGED_PREREQ
253
254 2006-05-08 Sergey Poznyakoff <gray@gnu.org.ua>
255
256 Listed incremental backups: keep more information about
257 directories. Handle renamed directories more effectively
258 (initial implementation, more updates to follow).
259 Source tree before this point is tagged
260 alpha_1_15_90_incremental_1.
261
262 * NEWS: Update
263 * configure.ac: Raise version number to 1.15.91
264 * src/common.h (rename_directory,append_incremental_renames): New
265 functions.
266 * src/extract.c (rename_directory): New function
267 * src/incremen.c (struct directory.contents, flags): New members
268 (nfs,found,new): Remove. Replaced by appropriate bitmask values in
269 `flags' field. All uses updated.
270 (directory_meta_table): New table.
271 (hash_directory): Rename to hash_directory_name
272 (compare_directories): Rename to compare_directory_names
273 (hash_directory_meta,compare_directory_meta,find_directory_meta):
274 New functions
275 (compare_dirents): Removed
276 (note_directory): Get 7th argument: directory contents.
277 All callers updated
278 (dumpdir_locate,makedumpdir): New functions
279 (scan_directory): Rewritten. Use makedumpdir to create a sorted
280 dumpdir array. This makes the obstack argument unnecessary. Besides,
281 ALL_CHILDREN flag is set only for new directories.
282 (procdir): Change return type to struct directory. Return
283 immediately if the directory was already initialized. Discover
284 directory renames using directory_meta_table.
285 (append_incremental_renames): New function.
286 (read_directory_file, write_directory_file): Use new snapshot file
287 format.
288 * src/names.c (collect_and_sort_names): Update dir_contents of the
289 first non-fake name entry when in listed incremental mode.
290
291 * tests/incr03.at: New testcase
292 * tests/rename01.at: New testcase
293 * tests/rename02.at: New testcase
294 * tests/rename03.at: New testcase
295 * tests/Makefile.am: Add
296 incr03.at,rename01.at,rename02.at,rename03.at
297 * tests/testsuite.at: Likewise.
298 * tests/listed02.at: Update for the new behavior
299 * tests/multiv04.at (AT_KEYWORDS): Add missing incremental kw.
300
301 2006-05-02 Sergey Poznyakoff <gray@gnu.org.ua>
302
303 * src/buffer.c (try_new_volume): Attempt to continue if the name
304 is apparently truncated in a GNU format volume.
305
306 * tests/comprec.at, tests/delete01.at, tests/delete02.at,
307 tests/delete04.at, tests/delete05.at, tests/extrac05.at,
308 tests/listed01.at, tests/multiv01.at, tests/multiv02.at,
309 tests/pipe.at, tests/same-order01.at, tests/same-order02.at,
310 tests/sparse01.at, tests/sparse03.at: Always use genfile --file,
311 this enables extra error checking.
312
313 * tests/multiv03.at: Attempt to extract a member with truncated
314 file name from the archive.
315
316 * src/buffer.c (_open_archive): Remove unnecessary argument to
317 check_compressed_archive.
318
319 2006-04-25 Sergey Poznyakoff <gray@gnu.org.ua>
320
321 * tests/sparse01.at, tests/sparse02.at, tests/sparse03.at,
322 tests/sparsemv.at, tests/sparsemvp.at: Skip the test if the file
323 system does not support sparse files.
324 * doc/tar.texi (@copying): Remove the reference to not existing
325 invariant section.
326
327 2006-04-11 Sergey Poznyakoff <gray@gnu.org.ua>
328
329 * src/extract.c (extract_dir): Fix toggling existing directory
330 permissions (Debian bug #361077). Use parts of patch provided by
331 Ian Jackson <iwj@ubuntu.com>.
332 * src/compare.c: Minor changes
333 * src/incremen.c (directory.new): New member
334 (note_directory,find_directory: Use make_directory to create
335 struct directory entries
336 (procdir): Avoid duplicating directories in the incremental
337 backup map.
338 * tests/Makefile.am (TESTSUITE_AT): Add extrac06.at
339 * tests/testsuite.at: Include extrac06.at
340
341 2006-03-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (trivial change)
342
343 * tests/atlocal.in (PATH): Add build-aux from the source tree,
344 not the build tree.
345
346 2006-03-13 Sergey Poznyakoff <gray@gnu.org.ua>
347
348 * THANKS: Add Benno Schulenberg
349
350 2006-03-13 Jim Meyering <jim@meyering.net>
351
352 * tests/listed02.at: Sort the two lines of stderr from the
353 first `tar -v --listed-incremental'. They would come out
354 reversed and provoke a test failure on a tmpfs
355 file system.
356
357 2006-03-13 Benno Schulenberg <benno@nietvergeten.nl>
358
359 * doc/tar.texi: Minor fixes.
360 * src/tar.c (options): Consistently begin help messages with a
361 lowercase letter.
362
363 2006-03-12 Sergey Poznyakoff <gray@gnu.org.ua>
364
365 * tests/Makefile.am (AM_CPPFLAGS): Define LOCALEDIR
366
367 2006-03-07 Paul Eggert <eggert@cs.ucla.edu>
368
369 * src/buffer.c (record_buffer_aligned): New var.
370 (init_buffer): Use it to ensure that the buffer is aligned.
371 This doesn't result in any measurable performance improvement
372 on my host (Debian GNU/Linux 3.1 stable, with default block size),
373 but I assume it does help on some hosts.
374
375 * lib/.cvsignore: Sort.
376
377 2006-03-04 Sergey Poznyakoff <gray@gnu.org.ua>
378
379 * tests/shortrec.at: Use -f - to read from stdin.
380
381 2006-02-21 Sergey Poznyakoff <gray@gnu.org.ua>
382
383 * doc/tar.texi: Fix typo: --to-command instead of --to-program
384
385 2006-02-20 Paul Eggert <eggert@cs.ucla.edu>
386
387 * tests/multiv04.at (split directory members in a MV archive):
388 Don't use %X in an awk printf format; this doesn't work with
389 Solaris 10 /usr/bin/awk. Use %x instead.
390
391 2006-02-20 Sergey Poznyakoff <gray@gnu.org.ua>
392
393 * src/create.c (split_long_name): Fix maximum length estimation.
394 Patch by Jim Lowe.
395 * tests/Makefile.am (lustar01.at,lustar02.at,lustar03.at): New
396 tests.
397 * tests/atlocal.in: Add build-aux to the PATH
398 * tests/long01.at: Remove mkhier, use AT_TAR_MKHIER instead
399 * tests/longv7.at: Reword test title
400 * tests/lustar01.at: New test
401 * tests/lustar02.at: New test
402 * tests/lustar03.at: New test
403 * tests/testsuite.at (AT_TAR_MKHIER): New macro
404 (lustar01.at,lustar02.at,lustar03.at): New tests.
405
406 2006-02-20 Paul Eggert <eggert@cs.ucla.edu>
407
408 * bootstrap: Don't claim lib/Makefile.am is generated automatically
409 from itself.
410
411 Avoid installation glitches on Solaris 8 with Sun C 5.4.
412 * lib/.cvsignore: Add system-ioctl.h.
413 * lib/Makefile.tmpl (noinst_HEADERS): Add system-ioctl.h.
414 * src/buffer.c: Include system-ioctl.h.
415 * src/compare.c: Likewise.
416 * src/delete.c: Likewise.
417 * src/system.c: Include <getline.h>, <setenv.h>.
418 * src/tar.c: Include <getline.h>.
419
420 2006-02-19 Sergey Poznyakoff <gray@gnu.org.ua>
421
422 * src/buffer.c (add_chunk_header): Free st.orig_file_name after
423 calling finish_header().
424 (new_volume): Prompt the user for archive name if unable to open
425 next archive.
426
427 * src/create.c (dump_file0): Restore file_count_links,
428 accidentally removed on 2005-11-29.
429 * configure.ac: Raise version number to 1.15.90
430 * NEWS: Likewise.
431
432 2006-02-08 Sergey Poznyakoff <gray@gnu.org.ua>
433
434 * src/tar.c (tar_set_quoting_style): Provide second argument to
435 the format spec: program_invocation_short_name. Reported by Jim
436 Meyering.
437
438 2006-02-07 Paul Eggert <eggert@cs.ucla.edu>
439
440 * gnulib.modules: Add closeout, exitfial.
441 * lib/.cvsignore: Add __fpending.c, __fpending.h, closeout.c,
442 closeout.h.
443 * src/buffer.c: Incluse closeout.h.
444 (_open_archive): Use freopen rather than fopen, so
445 that stdlis is always either stdout or stderr. Use
446 close_stdout_set_file_name to report its name.
447 * src/tar.c: Include closeout.h and exitfail.h.
448 (parse_opt, usage): Call close_stdout as appropriate, to check for
449 write errors.
450 (decode_options): Exit with status TAREXIT_FAILURE, not 1.
451 (main): Set exit_failure, to exit with proper status on memory
452 allocation failure and the like.
453 Use close_stdout rather than rolling our own test.
454
455 * NEWS: --version now outputs copyright etc., to conform to the
456 GNU coding standards. Remove --license.
457 * gnulib.modules: Add version-etc-fsf.
458 * doc/tar.texi: Document the change.
459 * lib/.cvsignore: Add version-etc-fsf.c, version-etc.c, version-etc.h.
460 * scripts/Makefile.am (SED_CMD): Update PAKCAGE_NAME, not PACKAGE.
461 * scripts/backup.in: Remove --license. Change --version to conform
462 to GCS.
463 * scripts/restore.in: Likewise.
464 * scripts/backup.sh.in (license): Output briefer license in the
465 style of coreutils, for consistency with other changes.
466 * src/tar.c: Include <version-etc.h>.
467 (LICENSE_OPTION): Remove.
468 (options): Remove --license.
469 (license): Remove.
470 (parse_opt): Use version_etc instead of rolling it ourselves.
471 Remove --license.
472 * tests/version.at (tar --version): Check only the first line of
473 output.
474
475 * ChangeLog, NEWS, src/common.h, src/extract.c, src/incremen.c:
476 * src/list.c, src/names.c, src/tar.h, src/xheader.c:
477 Update copyright year to 2006.
478
479 2006-02-07 Jim Meyering <jim@meyering.net>
480
481 * src/xheader.c (sparse_map_decoder): Fix misleading diagnostic.
482
483 2006-01-31 Sergey Poznyakoff <gray@gnu.org.ua>
484
485 * src/common.h (get_gnu_dumpdir): Remove prototype
486 (is_dumpdir): New function
487 * src/extract.c (prepare_to_extract): Use is_dumpdir member to
488 check for dumpdirs.
489 * src/incremen.c (get_gnu_dumpdir): Static
490 (is_dumpdir): New function
491 (purge_directory): Use is_dumpdir
492 * src/list.c (list_archive): Use is_dumpdir
493 Do not wrap skip_member in mv_begin/mv_end, the function itself
494 takes care of it.
495 (decode_header): Set stat_info->is_dumpdir
496 (skip_member): Do nothing if skipped is true
497 * src/tar.h (struct tar_stat_info): New members is_dumpdir and skipped.
498
499 2006-01-22 Sergey Poznyakoff <gray@gnu.org.ua>
500
501 * src/tar.c (decode_options): Refuse using --delete with
502 compression options.
503
504 2006-01-18 Sergey Poznyakoff <gray@gnu.org.ua>
505
506 * NEWS: Updated.
507 * configure.ac (DEFAULT_QUOTING_STYLE): New configuration variable
508 * doc/tar.texi: Initial documentation for --quoting-style,
509 --quote-chars and --no-quote-chars option.
510 * src/tar.c: Implement new options --quoting-style, --quote-chars
511 and --no-quote-chars.
512
513 2006-01-09 Paul Eggert <eggert@cs.ucla.edu>
514
515 * bootstrap: Default to pserver, and switch to cvs.sv.gnu.org,
516 to accommodate recent changes to the GNU CVS server.
517 * lib/.cvsignore: Add argp-pin.c, mkdirat.c, openat-priv.h.
518
519 2005-12-14 Sergey Poznyakoff <gray@gnu.org.ua>
520
521 * src/names.c (name_scan): Take an additional argument requesting
522 exact matching.
523 * src/common.h (name_scan): Change prototype.
524 * src/delete.c, src/incremen.c, src/update.c: Update invocations
525 of name_scan.
526
527 2005-12-13 Sergey Poznyakoff <gray@gnu.org.ua>
528
529 * src/common.h (struct name): New member `explicit'. Remove unused
530 member `isdir'.
531 * src/incremen.c (procdir): If name_scan() returns something,
532 check if it was explicitely given in the command line
533 * src/names.c (addname,add_hierarchy_to_namelist): Initialize
534 explicit member appropriately.
535
536 * src/incremen.c (procdir): If --one-file-system is given and a
537 directory is found to be on another device, *and* this directory
538 is explicitely given in the command line, then do not omit it.
539
540 2005-12-11 Sergey Poznyakoff <gray@gnu.org.ua>
541
542 * NEWS: Update
543 * doc/tar.texi: Document --delay-directory-restore option.
544 (Configuring Help Summary): Document usage of ARGP_HELP_FMT
545 variable to customize help output.
546 * src/common.h (delay_directory_restore_option): New global.
547 * src/extract.c (directories_first): Replaced by
548 delay_directory_restore_option. All uses changed.
549 * src/tar.c (options,parse_opt): New options
550 --delay-directory-restore and --no-delay-directory-restore
551
552 2005-12-09 Sergey Poznyakoff <gray@gnu.org.ua>
553
554 * src/buffer.c (open_archive): Add default case to shut up gcc.
555 * src/common.h (set_file_atime): Add prototype.
556 * src/create.c (to_chars_subst): Remove unused variable
557 Make sure useful result code is returned.
558 * src/incremen.c (read_directory_file): Fix format string
559 Thanks Eric Blake for reporting.
560
561 2005-12-08 Sergey Poznyakoff <gray@gnu.org.ua>
562
563 * doc/tar.texi (Current status): Renamed to 'Changes' and moved to
564 appendices.
565 (Large or Negative Values): Rewritten
566 * src/common.h (gid_to_chars, major_to_chars, minor_to_chars)
567 (mode_to_chars, off_to_chars, size_to_chars, time_to_chars)
568 (uid_to_chars, uintmax_to_chars): Return bool
569 * src/create.c (gid_to_chars, major_to_chars, minor_to_chars)
570 (mode_to_chars, off_to_chars, size_to_chars, time_to_chars)
571 (uid_to_chars, uintmax_to_chars): Return bool
572 (to_chars): Return bool
573 (start_header): Check return values of convertion routines. Fail
574 if unable to store data in the header.
575
576 2005-12-07 Sergey Poznyakoff <gray@gnu.org.ua>
577
578 * doc/tar.texi: Following the discussion with Karl Berry,
579 discontinue using @value{} substitutions for Texinfo commands.
580 Properly index all long options. Print a
581 separate long option index.
582 * doc/value.texi: Remove @set's
583
584 * doc/tar.texi: Update --info-script documentation
585 Resolve some more FIXMEs.
586 * scripts/dump-remind.in: Use TAR_VOLUME instead of reading volno
587 file.
588 * src/buffer.c (new_volume): Update invocation
589 (change_tape_menu): New function. Disable '!' command if given
590 --restrict option.
591 * src/common.h (sys_exec_info_script): Update declaration
592 (restrict_option): New global
593 * src/system.c (sys_exec_info_script): The script can supply new
594 archive name to use by writing it to file descriptor 3.
595 * src/tar.c (options): Add --restrict option. Use macros for
596 option grouping.
597 (license): Print full list of copyright years
598 * NEWS: Update
599
600 2005-12-06 Eric Blake <ebb9@byu.net> (trivial changes)
601
602 * configure.ac (DENSITY_LETTER): Fix m4 overquoting.
603 * .cvsignore: Ignore .bootstrap.
604
605 2005-12-06 Sergey Poznyakoff <gray@gnu.org.ua>
606
607 * doc/tar.texi: Document --to-command and --info-script
608 options. Add missing xrefs.
609 * src/buffer.c (new_volume): Use sys_exec_info_script() instead of
610 system().
611 * src/common.h (archive_format_string,subcommand_string)
612 (sys_exec_info_script): New prototypes.
613 * src/system.c (sys_exec_info_script): New function.
614 * src/tar.c (archive_format_string): Remove static qualifier.
615 (subcommand_string): New function.
616
617 2005-12-01 Sergey Poznyakoff <gray@gnu.org.ua>
618
619 * src/extract.c: Fix restoring of directory timestamps from
620 incremental archives.
621 (directories_first): New variable.
622 (prepare_to_extract): Set directories_first
623 (extract_archive): Call apply_nonancestor_delayed_set_stat() only
624 if not extracting from an incremental archive
625 (extract_dir): Obtain root_device here, to make sure it works
626 correctly with -C.
627
628 * src/incremen.c (purge_directory): Skip the member and return if
629 the archive is not in incremental format.
630 * tests/incr02.at: New testcase
631 * tests/Makefile.am: Add incr02.at
632 * tests/testsuite.at: Likewise
633
634 * THANKS: Add Guerkan Karaman.
635 * NEWS: Update
636
637 2005-11-30 Paul Eggert <eggert@cs.ucla.edu>
638
639 * doc/tar.texi (Option Summary): Rewrite the
640 --atime-preserve=system description in response to Ian Turner's
641 proposed patch.
642
643 2005-11-30 Ian Turner <ian@zmanda.com>
644
645 * doc/tar.texi (Extracting Specific Files): Remove obsolescent
646 FIXME.
647
648 2005-11-29 Paul Eggert <eggert@cs.ucla.edu>
649
650 * NEWS: New option --atime-preserve=system, which uses O_NOATIME.
651 * THANKS: Add Ian Turner.
652
653 * configure.ac: Prefer AC_CHECK_HEADERS_ONCE to AC_CHECK_HEADERS.
654 Check for stropts.h and sys/filio.h too, for _FIOSATIME.
655 * doc/tar.texi: Change "modification time" to "data modification
656 time", "change time" to "status change time", and "filesystem" to
657 "file system", so that we use terminology consistent with POSIX.
658 Use American spacing rather than French for sentence ends.
659 "non-dependable" -> "undependable".
660 (Option Summary, Attributes): Explain better the pitfalls of the
661 --atime-preserve option, and suggest read-only mounts,loopback
662 mounts, and noatime mounts for older systems.
663 * doc/value.texi (op-atime-preserve-system): Renamed from
664 op-atime-preserver-system to fix a misspelling.
665 * src/common.h (enum atime_preserve): Use lower case for enum values.
666 * src/compare.c: Don't include utimens.h; no longer needed.
667 (diff_file): Use set_file_atime rather than utimens; avoid closing
668 diff_handle until after this, so that we can set the file time stamp
669 via the file descriptor rather than via its name.
670 * src/create.c: Don't include utimens.h; no longer needed.
671 (dump_regular_finish): Remove. All callers now do its work inline.
672 (dump_dir): New arg FD. All callers changed.
673 Use fdsavedir rather than savedir.
674 (unknown_file_error): Arg is a const pointer now.
675 (dump_file0): 2nd arg is a const pointer now.
676 Treat directories more like files, with respect to --atime-preserve.
677 For example, also warn if a directory changes while we are dumping it.
678 Prefer file descriptors to file names when retrieving/setting file
679 attributes; this saves path-resolution time and allows us to avoid
680 changing mtime/ctime on Solaris when restoring atime as root.
681 Use O_DIRECTORY when opening directories, to avoid some race conditions.
682 Do not reset atime if mtime has changed. Report an error if
683 we cannot reset atime.
684
685 * lib/.cvsignore: Add malloc.h, regcomp.c, regex.c, regex.h,
686 regex_internal.c, regex_internal.h, regexc.c; used by rpmatch.
687
688 2005-11-29 Ian Turner <ian@zmanda.com>
689
690 First cut at adding support for --atime-preserve=system.
691 * doc/tar.texi (Option Summary): First cut at documenting it.
692 All other uses of --atime-preserve changed to --atime-preserve=replace.
693 * doc/value.texi (op-atime-preserve-replace, op-atime-preserver-system):
694 New.
695 (op-atime-preserve): Mention METHOD.
696 * src/common.h (atime_preserve): New enum.
697 (atime_preserve_option): Now of the enum type rather than bool.
698 All uses changed.
699 * src/compare.c (diff_file): Read with O_NOATIME if asked for.
700 * src/create.c (dump_file0): Read regular and CTG files with O_NOATIME
701 if asked for.
702 * src/tar.c (usage): Mention new usage.
703 (parse_opt): Parse new usage.
704
705 2005-11-29 Paul Eggert <eggert@cs.ucla.edu>
706
707 * THANKS: Convert back to UTF-8, sort (using LC_ALL=C on Debian
708 stable), and consistently use tabs rather than spaces.
709
710 2005-11-27 Sergey Poznyakoff <gray@gnu.org.ua>
711
712 * src/xheader.c: Remove parts of code prematurely introduced
713 yesterday. Thanks Eric Blake.
714
715 2005-11-26 Sergey Poznyakoff <gray@gnu.org.ua>
716
717 * src/xheader.c (xheader_format_name): Fix memory leak.
718
719 2005-11-11 Sergey Poznyakoff <gray@gnu.org.ua>
720
721 * gnulib.modules: Add rpmatch
722 * lib/stdopen.h, lib/stdopen.c: New file. Imported from coreutils.
723 * lib/Makefile.tmpl: Add stdopen.h, stdopen.c
724 * po/POTFILES.in: Add rpmatch.c
725 * src/tar.c (confirm): Rewritten using rpmatch.
726 (decode_options): Minor optimizations
727 (main): Call stdopen() to ensure the first three descriptors are
728 open.
729
730 * tests/multiv01.at, tests/multiv02.at, tests/multiv03.at,
731 tests/multiv04.at, tests/sparsemv.at, tests/sparsemvp.at,
732 tests/star/multi-fail.at: Close stdin so that if something fails
733 causing tar to ask for the next volume, it won't hang the
734 testsuite.
735
736 * src/buffer.c (flush_write,flush_read): Change data type.
737 (flush_archive): Compute actual buffer fill level before calling
738 low level function.
739 (close_archive): Call flush_archive again if the first call
740 resulted in partially filled buffer.
741 (try_new_volume): Rewritten handling of initial headers.
742 (add_chunk_header): New function. Write an additional header
743 before the continuation chunk. The purpose of the header is to
744 allow third-party tars to extract the member.
745 (simple_flush_write): Take an argument.
746 (_gnu_flush_write): Correctly handle partially filled buffers.
747 * src/common.h (flush_read,flush_write): Functions, again.
748 (write_extended): Changed declaration
749 (xheader_format_name): New declaration
750 * src/create.c (write_extended): Change type and meaning of
751 the first argument. All callers updated
752 * src/xheader.c (xheader_format_name): Remove static
753 qualifier. Change last argument.
754 Correct buffer size calculation (allocated too much space).
755 (xheader_write): Increase global_header_count here ...
756 (xheader_write_global): ... instead of here
757
758 * tests/testsuite.at (AT_TAR_CHECK): Define TEST_TAR_FORMAT
759 * tests/multiv01.at: Update
760 * tests/multiv02.at: Update
761 * tests/multiv03.at: Update
762 * tests/sparsemvp.at: Update
763 * tests/star/multi-fail.at: Update
764
765 * scripts/tarcat: Handle archives in pax format. Improve handling
766 of traditional archives.
767 * doc/tar.texi (Tarcat): New node
768
769 2005-11-10 Sergey Poznyakoff <gray@gnu.org.ua>
770
771 Fix splitting of sparse files between the volumes.
772
773 * src/buffer.c (try_new_volume): Bugfix. Always check
774 continued_file_name. If it is absent, the volume is out
775 of sync.
776 (add_multi_volume_header): Create GNU.volume.filename keyword in
777 the extended header.
778 * src/sparse.c (sparse_dump_region): Call mv_size_left.
779 (sparse_dump_file): Enclose the loop in mv_begin/mv_end.
780 * src/system.c: Do not pad compressed output if it goes to
781 stdout.
782 * src/xheader.c (xhdr_tab): New keyword GNU.volume.filename.
783
784 * tests/sparsemv.at: New testcase
785 * tests/sparsemvp.at: New testcase
786 * tests/Makefile.am: Add sparsemv.at and sparsemvp.at.
787 * tests/testsuite.at: Likewise.
788
789 2005-11-09 Sergey Poznyakoff <gray@gnu.org.ua>
790
791 * src/buffer.c: Rewritten in a more modular fashion to provide
792 GNU extensions (multi-volume archives and archive labels) in
793 pax format.
794 NOTICE, that some of the aspects (e.g. splitting the archive
795 on the extended header boundary) are still not solved, others
796 (splitting a sparse file between the volume) require additional
797 testing. Wait for the next commit.
798
799 (volume_label,continued_file_name,continued_file_size)
800 (continued_file_offset): New globals.
801 (save_name,save_totsize,save_sizeleft): Make static
802 (mv_begin,mv_end,mv_total_size,mv_size_left): New functions
803 (open_archive,flush_write,flush_read): Rewritten
804
805 * src/common.h (save_name,save_sizeleft,save_totsize): Remove
806 globals.
807 (volume_label,continued_file_name,continued_file_size): New
808 variables.
809 (flush_read,flush_write): Pointers to functions
810 (mv_begin,mv_end,mv_total_size,mv_size_left): New functions
811 (write_extended): New function.
812
813 * src/compare.c, src/create.c, src/extract.c, src/incremen.c,
814 src/list.c: Use mv_.* functions uniformly instead of fiddling
815 with the global variables.
816 * src/sparse.c: Use mv_.* functions where necessary.
817 * src/tar.c (decode_options): Allow to use --multi-volume and
818 --label with pax archives.
819 * src/xheader.c (xhdr_tab): Support for new GNU keywords.
820
821 * tests/delete01.at, tests/delete02.at, tests/delete03.at,
822 tests/delete04.at, tests/delete05.at, tests/extrac01.at,
823 tests/extrac02.at, tests/extrac03.at, tests/extrac04.at,
824 tests/extrac05.at, tests/incr01.at, tests/incremental.at,
825 tests/listed01.at, tests/listed02.at, tests/long01.at,
826 tests/longv7.at, tests/multiv01.at, tests/multiv02.at,
827 tests/multiv03.at, tests/multiv04.at, tests/options.at,
828 tests/options02.at, tests/same-order01.at, tests/same-order02.at,
829 tests/sparse01.at, tests/sparse02.at, tests/sparse03.at,
830 tests/star/multi-fail.at (AT_KEYWORDS): Improve to allow execution
831 of related tests in groups.
832
833 * doc/tar.texi: Update
834
835 2005-11-07 Paul Eggert <eggert@cs.ucla.edu>
836
837 * src/xheader.c (struct xhdr_tab.coder): Last arg is void const *,
838 not void *, to avoid create.c warning from GCC "passing argument 3
839 of 'xheader_store' discards qualifiers from pointer target type".
840 (dummy_coder, atime_coder, gid_coder, gname_coder, linkpath_coder):
841 (ctime_coder, mtime_coder, path_coder, size_coder, uid_coder):
842 (uname_coder, sparse_size_coder, sparse_numblocks_coder):
843 (sparse_offset_coder, sparse_numbytes_coder, dumpdir_coder):
844 (xheader_store): Likewise.
845 * src/common.h (xheader_store): Likewise.
846
847 2005-11-07 Sergey Poznyakoff <gray@gnu.org.ua>
848 and Paul Eggert <eggert@cs.ucla.edu>
849
850 * src/tar.c (NS_PRECISION_FORMAT_MASK): New macro.
851 (tar_timespec_cmp): New function. Wrapper over
852 timespec_cmp using the timespec precision provided by the
853 current archive format.
854 * src/common.h (tar_timespec_cmp): New declaration.
855 * src/compare.c (diff_file): Use tar_timespec_cmp.
856 * src/extract.c (file_newer_p): Likewise.
857 * src/update.c (update_archive): Likewise.
858 * tests/truncate.at: Reverted changes
859 * tests/update.at: Reverted changes
860
861 2005-11-07 Sergey Poznyakoff <gray@gnu.org.ua>
862
863 Support for incremental formats in pax archives.
864 Fixed POSIX compatibility of `sparse' extended header keywords.
865
866 * src/common.h (dumpdir_size,get_gnu_dumpdir)
867 (xheader_string_begin,xheader_string_add)
868 (xheader_string_end): New functions.
869 * src/create.c (dump_dir0): Handle incremental backups in pax
870 archives.
871 * src/incremen.c (dumpdir_size, get_gnu_dumpdir): New functions.
872 (purge_directory): Use stat_info.dumpdir instead of getting its
873 value explicitely.
874 * src/list.c (list_archive): Handle incremental backups in pax
875 format.
876 (decode_header): Initialize stat_info.dumpdir
877 * src/sparse.c (sparse_diff_file): Bugfix: set seekable.
878 (pax_dump_header): Store sparse map in GNU.sparse.map. If this
879 variable has been explicitely deleted, use GNU.sparse.offset/
880 GNU.sparse.numbytes variables.
881 * src/tar.c (decode_options): Incremental options are allowed with
882 --format=pax
883 (tar_stat_destroy): Free dumpdir
884 * src/tar.h (struct tar_stat_info.dumpdir): New member.
885 * src/xheader.c (xheader_keyword_deleted_p): Remove static
886 qualifier.
887 (struct xhdr_tab.decoder): Change prototype. POSIX allows string
888 values to contain embedded nulls, so take an extra argument
889 specifying the length of the string.
890 (decx,decg,dummy_decoder,atime_decoder,gid_decoder)
891 (gname_decoder,linkpath_decoder,ctime_decoder,mtime_decoder)
892 (path_decoder,size_decoder,uid_decoder,uname_decoder)
893 (sparse_size_decoder,sparse_numblocks_decoder)
894 (sparse_offset_decoder,sparse_numbytes_decoder): Likewise.
895 (decode_record): Pass value length to the handler
896 (run_override_list): Pass value length to the decoder
897 (xheader_print_n): New function
898 (xheader_print): Rewritten using xheader_print_n
899 (xheader_finish): Do not rely om strlen to compute the length of
900 the collected string: it can contain embedded nulls
901 (xheader_string_begin,xheader_string_add,xheader_string_end): New
902 functions.
903 (sparse_map_decoder,dumpdir_coder,dumpdir_decoder): New
904 functions. Handle GNU.sparse.map and GNU.dumpdir variables.
905 (xhdr_tab): Add new variables.
906
907 * tests/incr01.at: Test gnu, oldgnu, and posix formats
908 * tests/incremental.at: Likewise
909
910 2005-11-06 Paul Eggert <eggert@cs.ucla.edu>
911
912 * NEWS: Minor language and white space fixes.
913
914 * tests/truncate.at: Create files whose time stamps must fall on
915 1-second boundaries. This prevents tests from failing on hosts
916 like Solaris 8 that have nanosecond-resolution file time stamps.
917 * tests/update.at: Likewise.
918
919 * src/xheader.c (strtoimax, strtoumax): Remove decls; now done
920 in system.h.
921
922 2005-11-06 Sergey Poznyakoff <gray@gnu.org.ua>
923
924 * doc/tar.texi: Properly document incremental dumps
925 * doc/value.texi: Likewise.
926 * doc/snapshot.texi: Likewise.
927
928 2005-11-05 Sergey Poznyakoff <gray@gnu.org.ua>
929
930 Improve listed incremental format:
931
932 * src/common.h (update_parent_directory): New prototype.
933 * src/create.c (dump_file): Call update_parent_directory.
934 * src/incremen.c (struct directory.mtime): New member.
935 (note_directory): Take additional arguments. All callers updated.
936 (scan_directory): Updated to use more metadata. In particular,
937 this allows to correctly detect renamed files.
938 (read_directory_file,write_directory_file)
939 (write_directory_file_entry): Support new directory file format.
940 * tests/listed01.at: Sleep 1 sec before creating second file.
941 * tests/listed02.at: Never skip the test. It should work on any
942 filesystem.
943
944 * doc/snapshot.texi: New file
945 * doc/tar.texi: Update.
946 * doc/Makefile.am: Update.
947
948 2005-11-04 Paul Eggert <eggert@cs.ucla.edu>
949
950 * src/extract.c (set_stat): Rewrite to avoid bug in Forte
951 Developer 7 C 5.4 Patch 111708-09 (2004-02-19).
952
953 2005-11-04 Sergey Poznyakoff <gray@gnu.org.ua>
954
955 * bootstrap: Fix quoting in help output.
956 (update_po): Use backward-compatible wget option --cache instead
957 of deprecated -C to accomodate for wget 1.10.
958 Changes proposed by Eric Blake
959 * THANKS: Add Eric Blake
960
961 2005-11-02 Paul Eggert <eggert@cs.ucla.edu>
962
963 * doc/tar.texi: Consistently put two spaces after sentences,
964 and put commas after "i.e." and "e.g.". This is the usual GNU
965 style in manuals.
966
967 * lib/.cvsignore: Add creat-safer.c, fcntl--.h, fcntl-safer.h,
968 open-safer.c, openat-die.c, verify.h, to accommodate recent gnulib
969 changes.
970
971 2005-10-27 Sergey Poznyakoff <gray@gnu.org.ua>
972
973 * src/compare.c (diff_dumpdir): Pass a valid device number to
974 get_directory_contents.
975
976 * THANKS: Add John Thomas McDole
977
978 * bootstrap: If file `.bootstrap' exists in the cwd and is
979 readable, prepend its contents to the command line
980
981 2005-10-21 Sergey Poznyakoff <gray@gnu.org.ua>
982
983 * tests/link01.at: Skip test if ln fails (suppose the OS does
984 not support hard links).
985
986 2005-10-04 Sergey Poznyakoff <gray@gnu.org.ua>
987
988 * src/tar.c (decode_options): Report error if -A or -r is used
989 together with compression option.
990
991 2005-09-29 Sergey Poznyakoff <gray@gnu.org.ua>
992
993 * doc/tar.texi: Use @option and @kbd consistently.
994 Document new options.
995
996 2005-09-28 Sergey Poznyakoff <gray@gnu.org.ua>
997
998 * NEWS: Updated
999 * src/common.h (show_stored_names_option): New variable
1000 * src/list.c (print_header): If show_stored_names_option is given,
1001 list member names as stored in the archive. Patch proposed by Erik
1002 Cumps <erik.cumps@icos.be>
1003 * src/tar.c: Implement --show-stored-names option
1004
1005 * src/common.h (test_label_option): New variable;
1006 * src/list.c (print_header): Special handling if test_label_option
1007 is set.
1008 * src/names.c (all_names_found): If test_label_option is set
1009 return true.
1010 * src/tar.c: New option --test-label tests the archive volume
1011 label. The option proposed by Wouter Verhelst <wouter@nixsys.be>
1012
1013 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
1014
1015 * tests/Makefile.am (clean-local): Don't attempt to run
1016 $(TESTSUITE) if it doesn't exist. Problem reported by
1017 Eric Blake.
1018
1019 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
1020
1021 Don't filter time stamps through the resolution supported
1022 by struct stat; keep them to full nanosecond resolution.
1023 This affects behavior only on older hosts or file systems
1024 that have lower-resolution time stamps.
1025 * src/common.h (OLDER_STAT_TIME): Parenthesize arg.
1026 (OLDER_TAR_STAT_TIME): New macro.
1027 (code_timespec): New function.
1028 (BILLION, LOG10_BILLION, TIMESPEC_STRSIZE_BOUND): New constants.
1029 * src/compare.c (diff_file): Use full time stamp resolution.
1030 * src/create.c (start_header, dump_file0): Likewise.
1031 (start_header, dump_file0): Adjust to new structure layout.
1032 (dump_regular_finish): Simplify by using timespec_cmp.
1033 * src/extract.c (struct delayed_set_stat): Don't store stat info
1034 that we don't need, to save space. All uses changed.
1035 (struct delayed_set_stat, struct delayed_link, file_newer_p):
1036 (create_placeholder_file, extract_link, apply_delayed_links):
1037 Use full time stamp resolution.
1038 (check_time): Use code_timespec rather than rolling our own code.
1039 (set_stat, delay_set_stat): Arg now points to tar_stat_info to
1040 avoid losing time information. All callers changed.
1041 * src/list.c (read_and, decode_header, print_heaeder):
1042 Use full time stamp resolution.
1043 * src/misc.c (code_timespec): New function.
1044 * src/tar.h (struct tar_stat_info): Record atime, mtime, ctime
1045 separately, for benefit of hosts with lower resolution.
1046 * src/update.c (update_archive): Use full time stamp resolution.
1047 * src/xheader.c (code_time): Use new code_timespec function
1048 to simplify code.
1049 (atime_coder, atime_decoder, ctime_coder, ctime_decoder):
1050 (mtime_coder, mtime_decoder): Use full time stamp resolution.
1051
1052 Report time stamps to full resolution in environment.
1053 Report memory allocation failures rather than ignoring them.
1054 * src/system.c (time_to_env): New function.
1055 (oct_to_env, str_to_env, chr_to_env): Report memory allocation failures.
1056 (stat_to_env): Report full resolution in time stamps.
1057
1058 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
1059
1060 Merge changes from gnulib for file system sub-second time stamps.
1061 * configure.ac: Remove checks for struct stat.st_spare1, struct
1062 stat.st_atim.tv_nsec, struct stat.st_atimespec.tv_nsec, struct
1063 stat.st_atimensec, as gnulib now does this for us.
1064 Similarly for LIB_CLOCK_GETTIME.
1065 * gnulib.modules: Add stat-time.
1066 * lib/.cvsignore: Add stat-time.h.
1067 * src/common.h: Include stat-time.h.
1068 (timespec_lt): Remove. All callers changed to use timespec_cmp.
1069 (get_stat_atime, get_stat_ctime, get_stat_mtime):
1070 (set_stat_atime, set_stat_ctime, set_stat_mtime):
1071 Remove; now defined by stat-time.h.
1072
1073 2005-09-14 Sergey Poznyakoff <gray@gnu.org.ua>
1074
1075 * src/incremen.c (list_dumpdir): New function. Used to dump
1076 contents of GNUTYPE_DUMPDIR blocks.
1077 * src/common.h (list_dumpdir): Likewise.
1078 * src/list.c (list_archive): Use list_dumpdir() to display
1079 GNUTYPE_DUMPDIR blocks. Do that only if two or more -v options are
1080 given.
1081
1082 2005-09-12 Paul Eggert <eggert@cs.ucla.edu>
1083
1084 * lib/.cvsignore: Adjust to current gnulib and modules used.
1085 Add getdelim.c, getdelim.h, mbchar.c, mbchar.h, mbuiter.h, memchr.c,
1086 pipe-safer.c, size_max.h, strdup.c, strdup.h, strnlen.h, strnlen1.c,
1087 strnlen1.h, unistd--.h.
1088 Remove getndelim2.c, getndelim2.h, pathmax.h, sysexits.h, xstrdup.c.
1089
1090 Treat fishy-looking hard links like fishy-looking symlinks.
1091 * src/extract.c (struct delayed_set_stat): Rename after_symlinks
1092 member to after_links. All uses changed.
1093 (struct delayed_link): Renamed from struct delayed_symlink.
1094 All uses changed. New member is_symlink.
1095 (delayed_link_head): Renamed from delayed_symlink_head. All uses
1096 changed.
1097 (create_placeholder_file): New function, taken from extract_symlink.
1098 (extract_link): Create placeholders for fishy-looking hard links.
1099 (extract_symlink): Move code into create_placeholder_file.
1100 (apply_delayed_links): Renamed from apply_delayed_symlinks.
1101 All uses changed. Create both hard links and symlinks.
1102
1103 2005-09-03 Paul Eggert <eggert@cs.ucla.edu>
1104
1105 * README-alpha: Modernize description of software required for
1106 developers.
1107
1108 2005-09-03 Sergey Poznyakoff <gray@gnu.org.ua>
1109
1110 * gnulib.modules: Add strdup
1111 * src/incremen.c (purge_directory): Do not dereference symbolic
1112 links. Bug reported by Ralph Corderoy <ralph@inputplus.co.uk> and
1113 David Brown <davidb@davidb.org>
1114 * tests/incr01.at: New test.
1115 * tests/Makefile.am: Add incr01.at
1116 * tests/testsuite.at: Likewise
1117 * THANKS: Updated
1118
1119 2005-08-17 Sergey Poznyakoff <gray@gnu.org.ua>
1120
1121 * src/incremen.c (read_directory_file): Use strtoumax to read
1122 snapshot file contents.
1123 (write_directory_file_entry): Use umaxtostr().
1124
1125 2005-07-31 Sergey Poznyakoff <gray@gnu.org.ua>
1126
1127 * src/create.c (file_dumpable_p,dump_file0): Fix handling of
1128 sparse files to /dev/null with --totals option.
1129 * tests/update.at: Remove dependency on file order.
1130
1131 2005-07-08 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1132
1133 * doc/tar.texi: Fix typo.
1134
1135 2005-07-07 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1136
1137 * tests/pipe.at: Pipe the output from `tar xfv' through sort.
1138
1139 2005-06-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1140
1141 * src/sparse.c (tar_sparse_init): Fill structure with zeros. Call
1142 sparse_select_optab(). All callers updated.
1143 (sparse_member_p, sparse_fixup_header): Use tar_sparse_init().
1144
1145 2005-06-23 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1146
1147 * src/sparse.c (pax_sparse_member_p): Checking member size
1148 vs. file size is not reliable enough. Use sparse_map_avail.
1149
1150 * tests/star/gtarfail.at: Adapt to the new output format
1151 * tests/star/gtarfail2.at: Likewise
1152 * tests/star/multi-fail.at: Likewise
1153 * tests/star/pax-big-10g.at: Likewise
1154 * tests/star/ustar-big-2g.at: Likewise
1155 * tests/star/ustar-big-8g.at: Likewise
1156
1157 * tests/sparse03.at: New test.
1158 * tests/Makefile.am: Add sparse03.at
1159 * tests/testsuite.at: Likewise
1160
1161 * src/xheader.c (size_decoder): Do not set archive_file_size.
1162
1163 Fix bugs introduced yesterday:
1164
1165 * src/sparse.c (tar_sparse_init): Initialize
1166 dimped_size to 0.
1167 (sparse_scan_file): Initialize archive_file_size to 0. The
1168 variable keeps size of the file *as stored in the archive*, not
1169 the size reported by stat.
1170
1171 2005-06-22 Paul Eggert <eggert@cs.ucla.edu>
1172
1173 A sweep of the sparse code prompted by a bug report by Jim Meyering.
1174 * src/sparse.c: Include <inttostr.h>.
1175 (struct tar_sparse_file): offset and dumped_size are off_t, not
1176 size_t. optab is now const *.
1177 (dump_zeros): Return bool success flag, not off_t.
1178 All callers changed.
1179 Use a constant-zero buffer rather than clearing a buffer each time.
1180 Don't mess up if write fails.
1181 (dump_zeros, check_sparse_region):
1182 Don't assume off_t is no wider than size_t.
1183 (tar_sparse_init): Don't bother clearing a field that is already clear.
1184 (zero_block_p): First arg is const *, not *.
1185 (clear_block, SPARSES_INIT_COUNT): Remove.
1186 (sparse_add_map): First arg is now struct start_stat_info *, not
1187 struct tar_sparse_file *. All callers changed.
1188 Use x2nrealloc to check for size_t overflow.
1189 (parse_scan_file): Cache commonly-used parts of file.
1190 Use an auto buffer, not a static one.
1191 Don't bother clearing the buffer; not needed.
1192 Don't bother clearing items that are already clear.
1193 (oldgnu_optab, star_optab, pax_optab): Now const.
1194 (sparse_dump_region): Don't bother clearing the buffer before
1195 reading into it; just clear the parts that aren't read into.
1196 (sparse_dump_file): Clear the whole local variable 'file'.
1197 (diff_buffer): Remove; now a local var.
1198 (check_sparse_region): Don't bother clearing buffer before
1199 reading into it. Don't assume off_t is promoted to long.
1200 (oldgnu_get_sparse_info, star_get_sparse_info):
1201 Use an auto status, not static.
1202 * src/tar.h (struct tar_stat_info): had_trailing_slash is
1203 now bool, not int.
1204 * src/xheader.c (sparse_offset_coder, sparse_numbytes_coder):
1205 Rewrite to avoid cast.
1206 (sparse_offset_decoder, sparse_numbytes_decoder):
1207 Diagnose excess entries rather than crashing.
1208
1209 2005-06-22 Jim Meyering <jim@meyering.net>
1210
1211 * src/common.h (timespec_lt): Add a return type: bool.
1212
1213 2005-06-21 Paul Eggert <eggert@cs.ucla.edu>
1214
1215 Further improvements inspired by Jim Meyering's fixes.
1216
1217 * NEWS: Better support for full-resolution time stamps.
1218 The -v option now prints time stamps only to 1-minute resolution.
1219 * gnulib.modules: Add utimens.
1220 * lib/.cvsignore: Add imaxtostr.c, inttostr.c, inttostr.h,
1221 offtostr.c, umaxtostr.c, utimens.c, utimens.h. Remove paxconvert.c.
1222 * lib/Makefile.tmpl (libtar_a_SOURCES): Remove paxconvert.c.
1223 * lib/paxconvert.c: Remove; superseded by umaxtostr.c.
1224 * po/POTFILES.in: Remove lib/paxconvert.c. Add lib/xalloc-die.c,
1225 lib/obstack.c.
1226 * src/buffer.c (set_start_time, compute_duration, start_time):
1227 Use gettime rather than rolling our own code.
1228 * src/common.h (OLDGNU_NAME_FIELD_SIZE, MAXOCTAL11, MAXOCTAL7): Remove.
1229 (newer_ctime_option): Remove.
1230 (timespec_lt): New function.
1231 (OLDER_STAT_TIME): Use it.
1232 (string_to_chars): First arg is char const *, not char *.
1233 (tartime): Time arg is now struct timespec. New bool arg.
1234 All callers changed.
1235 (code_ns_fraction): New decl.
1236 (sys_stat_nanoseconds): Remove decl.
1237 (get_stat_atime, get_stat_ctime, get_stat_mtime): New functions.
1238 (set_stat_atime, set_stat_ctime, set_stat_mtime): New functions.
1239 * src/compare.c: Include utimens.h rather than rolling our own.
1240 (diff_dir, diff_file, diff_link, diff_symlink, diff_special):
1241 Prototype.
1242 (diff_dumpdir, diff_multivol): Prototype.
1243 (diff_file): Support higher-resolution time stamps.
1244 * src/create.c: Include utimens.h rather than rolling our own.
1245 (MAX_OCTAL_VAL): New macro.
1246 (tar_copy_str, string_to_chars): Don't bother to zero-fill;
1247 the destination is already zeroed.
1248 (string_to_chars): First arg is char const *.
1249 (start_private_header): Use MINOR_TO_CHARS, not MAJOR_TO_CHARS,
1250 for minor device number.
1251 (write_header_name, dump_hard_link, dump_file0):
1252 Simplify test for old GNU format.
1253 (start_header): Put in placeholders for uid, etc., even when
1254 using extended headers, for benefit of older "tar" implementations.
1255 Don't assume uintmax_t is wider than 32 bits.
1256 Output extended header for mtime if needed.
1257 (dump_regular_finish, dump_file0):
1258 Support extended time stamp resolution.
1259 * src/extract.c: Include utimens.h rather than rolling our own.
1260 (check_time): Support extended time stamp resolution.
1261 * src/list.c: Include <inttostr.h>.
1262 (tartime): Use umaxtostr rather than stringify_uintmax_t_backwards.
1263 * src/xheader.c: Include <inttostr.h>.
1264 Do not include <xstrtol.h>.
1265 (strtoimax) [!HAVE_DECL_STRTOIMAX && !defined strtoimax]: New decl.
1266 (strtoumax) [!HAVE_DECL_STRTOUMAX && !defined strtoumax]: New decl.
1267 (BILLION, LOG10_BILLION): New constants.
1268 (to_decimal): Remove; superseded by inttostr. All callers changed
1269 to use umaxtostr.
1270 (xheader_format_name): Don't assume pids and uintmax_t values
1271 fit in 63 bytes (!) when printed.
1272 (decode_record): Don't bother to check for ERANGE; an out of range
1273 value must be treater than len_max anyway.
1274 If the length is out of range, output it in the diagnostic.
1275 (format_uintmax): Remove; all callers changed to use umaxtostr.
1276 (xheader_print): Don't assume sizes can be printed in 99 bytes (!).
1277 (out_of_range_header): New function.
1278 (decode_time): Use it.
1279 (code_time): Accept struct timespec, not time_t and unsigned long.
1280 All callers changed. Size sbuf properly, and remove unnecessary check.
1281 Don't assume time stamps can fit in 199 bytes.
1282 Handle negative time stamps. Handle fractional time stamps
1283 more consistently. Don't output unnecessary trailing zeros.
1284 (decode_time): Yield struct timespec, not time_t and unsigned long.
1285 All callers changed.
1286 Handle negative time stamps. Truncate towards minus infinity
1287 consistently. Improve overflow checks, and output a better
1288 diagnostic on overflow.
1289 (code_num): Don't assume uintmax_t can be printed in 99 bytes (!).
1290 (decode_num): New function, for better diagnostics.
1291 (atime_coder, atime_decoder, gid_decoder, ctime_coder):
1292 (ctime_decoder, mtime_coder, mtime_decoder, size_decoder):
1293 (uid_decoder, sparse_size_decoder, sparse_numblocks_decoder):
1294 (sparse_offset_decoder, sparse_numbytes_decoder):
1295 Use decode_num, etc., instead of xstrtoumax, etc.
1296
1297 2005-06-21 Jim Meyering <jim@meyering.net>
1298
1299 Carefully crafted invalid headers can cause buffer overrun.
1300 Invalid header fields go undiagnosed.
1301 Some valid time strings are ignored.
1302
1303 * src/xheader.c (sparse_numblocks_decoder): Remove unchecked use
1304 of `calloc'. Use xcalloc instead.
1305 (decode_time, gid_decoder, size_decoder, uid_decoder):
1306 (sparse_size_decoder, sparse_offset_decoder, sparse_numblocks_decoder):
1307 Ensure that the result of calling xstrtoumax is no larger than
1308 the maximum value for the target type. Upon any failure, exit with
1309 a diagnostic.
1310 (sparse_numblocks_decoder): Avoid buffer overrun/heap corruption:
1311 use x2nrealloc, rather than `n *= 2' and xrealloc(p, n,....
1312 (decode_time): Rewrite to accept time strings like
1313 1119018481.000000000. Before, such strings were always ignored.
1314
1315 2005-06-13 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1316
1317 * src/create.c (dump_file0): Check for is_avoided_name()
1318 first. Fixes bug reported by Martin Lohmeier
1319 <martin@mein-horde.de>
1320 * tests/update.at: New file
1321 * tests/Makefile.am (TESTSUITE_AT): Add update.at
1322 * tests/testsuite.at: Likewise
1323
1324 2005-06-13 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1325
1326 * configure.ac (AC_STRUCT_ST_BLKSIZE)
1327 (AC_STRUCT_ST_BLOCKS): Removed. Handled by system.m4.
1328
1329 2005-06-02 Paul Eggert <eggert@cs.ucla.edu>
1330
1331 * src/names.c (excluded_name): excluded_filename ->
1332 excluded_file_name, because the name was changed in gnulib.
1333
1334 2005-05-30 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1335
1336 * src/tar.c (read_name_from_file,update_argv): Automatically
1337 detect nul-terminated list files.
1338 * NEWS: Updated
1339
1340 2005-05-27 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1341
1342 * scripts/backup.sh.in: Bugfixes.
1343
1344 2005-05-26 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1345
1346 * scripts/backup.in: Minor fixes
1347 * scripts/backup.sh.in (mt_begin,mt_rewind)
1348 (mt_offline,mt_status): Use $MT to invoke mt
1349 (init_common): Set --rsh-command option for mt if TAPE_FILE is a
1350 remote archive.
1351 * doc/tar.texi: Document new backup scripts behavior
1352
1353 2005-05-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1354
1355 * lib/.cvsignore: Updated
1356 * lib/Makefile.tmpl: Add new paxutils files
1357 * po/POTFILES.in: Likewise
1358 * src/buffer.c: Update invocations of safer_name_suffix()
1359 * src/create.c: Likewise
1360 * src/extract.c: Likewise
1361 * src/xheader.c: Likewise
1362 * src/common.h: Include paxlib.h instead of paxerror.h
1363 (safer_name_suffix,removed_prefixes_p): Removed. The functions are
1364 imported from paxutils
1365 * src/names.c (hash_string_hasher,hash_string_compare)
1366 (hash_string_insert,hash_string_lookup,removed_prefixes_p)
1367 (safer_name_suffix): Moved to paxutils
1368
1369 2005-05-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1370
1371 * bootstrap (copy_files): Accept optional third argument: a prefix
1372 to be appended to destination file names.
1373 Import paxutils/paxlib files.
1374 * configure.ac: Remove checking for LIB_SETSOCKOPT, it is handled
1375 by paxutils.
1376 * lib/Makefile.tmpl (libtar_a_SOURCES): Add paxerror.c paxexit.c
1377 paxconvert.c
1378 * po/POTFILES.in: Likewise.
1379 * src/common.h: Remove defines and declarations imported from
1380 paxutils
1381 * src/misc.c: Likewise
1382 * src/list.c (stringify_uintmax_t_backwards): Moved to paxutils
1383
1384 2005-05-17 Paul Eggert <eggert@cs.ucla.edu>
1385
1386 * src/misc.c (remove_any_file): Fix typo in previous change.
1387
1388 2005-05-14 Paul Eggert <eggert@cs.ucla.edu>
1389
1390 Port to Solaris 10's treatment of unlinking directories.
1391 * gnulib-modules: Add unlinkdir.
1392 * lib/.cvsignore: Add unlinkdir.h, unlinkdir.c.
1393 * src/common.h (we_are_root): Remove extern decl; it's now static.
1394 * src/extract.c (we_are_root): Now static.
1395 * src/misc.c: Include <unlinkdir.h>.
1396 (remove_any_file): Use cannot_unlink_dir () rather than we_are_root.
1397
1398 * ChangeLog, ChangeLog.1, Makefile.am, NEWS, PORTS, README,
1399 README-alpha, TODO, bootstrap, configure.ac, doc/Makefile.am,
1400 doc/convtexi.pl, doc/fdl.texi, doc/gendocs_template,
1401 lib/Makefile.tmpl, lib/prepargs.c, lib/waitpid.c, po/POTFILES.in,
1402 scripts/Makefile.am, scripts/backup-specs, scripts/backup.in,
1403 scripts/backup.sh.in, scripts/restore.in, src/Makefile.am,
1404 src/arith.h, src/buffer.c, src/common.h, src/compare.c,
1405 src/create.c, src/delete.c, src/extract.c, src/incremen.c,
1406 src/list.c, src/mangle.c, src/misc.c, src/names.c, src/sparse.c,
1407 src/system.c, src/tar.c, src/tar.h, src/update.c, src/utf8.c,
1408 src/xheader.c, tests/Makefile.am, tests/append.at,
1409 tests/append01.at, tests/comprec.at, tests/delete01.at,
1410 tests/delete02.at, tests/delete03.at, tests/delete04.at,
1411 tests/delete05.at, tests/extrac01.at, tests/extrac02.at,
1412 tests/extrac03.at, tests/extrac04.at, tests/extrac05.at,
1413 tests/gzip.at, tests/ignfail.at, tests/incremental.at,
1414 tests/link01.at, tests/listed01.at, tests/listed02.at,
1415 tests/long01.at, tests/longv7.at, tests/multiv01.at,
1416 tests/multiv02.at, tests/multiv03.at, tests/multiv04.at,
1417 tests/old.at, tests/options.at, tests/options02.at, tests/pipe.at,
1418 tests/recurse.at, tests/same-order01.at, tests/same-order02.at,
1419 tests/shortrec.at, tests/sparse01.at, tests/sparse02.at,
1420 tests/testsuite.at, tests/truncate.at, tests/version.at,
1421 tests/volume.at, tests/star/gtarfail.at, tests/star/gtarfail2.at,
1422 tests/star/multi-fail.at, tests/star/pax-big-10g.at,
1423 tests/star/quicktest.sh, tests/star/ustar-big-2g.at,
1424 tests/star/ustar-big-8g.at:
1425 Update FSF postal mail address.
1426
1427 2005-05-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1428
1429 * NEWS: Updated
1430 * THANKS: Updated
1431 * bootstrap: Install files from paxutils/doc
1432 * doc/Makefile.am (tar_TEXINFOS): Add genfile.texi
1433 * doc/tar.texi (Genfile): New appendix
1434 * src/compare.c (diff_file): diff_handle was not initialized
1435 * src/create.c (dump_regular_file): Correctly pad archive members
1436 that shrunk during archiving. Repored by Frank Heckenbach.
1437 * src/extract.c (file_newer_p): Return false if file does not
1438 exist
1439 (prepare_to_extract): Correct warning wording.
1440 * tests/truncate.at: New test case
1441 * tests/Makefile.am: Add truncate.at
1442 * tests/testsuite.at: Likewise.
1443
1444 * doc/.cvsignore: Updated
1445 * lib/.cvsignore: Updated
1446 * tests/.cvsignore: Updated
1447
1448 2005-05-02 Paul Eggert <eggert@cs.ucla.edu>
1449
1450 * tests/multivol04.at: Tell awk to read from /dev/null.
1451
1452 Adjust to recent gnulib changes.
1453 * lib/.cvsignore: Add dup-safer.c, fd-safer.c, unistd-safer.h.
1454 * src/common.h (initial_umask): New var.
1455 * src/create.c (start_ueader): Use it, and adjust to new modechange
1456 API.
1457 (hash_link): unsigned -> size_t parameters and result.
1458 * src/incremen.c (hash_directory): Likewise.
1459 * src/names.c (hash_string_hasher): Likewise.
1460 * src/tar.c (parse_opt): Set it, and adjust to new modechange API.
1461
1462 2005-04-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1463
1464 * tests/Makefile.am: Add shortrec.at.
1465
1466 2005-04-18 Paul Eggert <eggert@cs.ucla.edu>
1467
1468 * src/buffer.c (reading_from_pipe): Remove. All uses removed.
1469 (short_read): Don't warn about short reads; they're normal.
1470 * tests/shortrec.at: New file.
1471 * tests/testsuite.at: Include it.
1472
1473 * bootstrap (gnulib_modules): Don't create a file modlist.tmp, as
1474 it is sometimes left behind as a garbage file (maybe due to the
1475 multiple traps?).
1476
1477 2005-04-14 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1478
1479 * src/list.c: Handle Solaris 'X' type flag
1480 * src/tar.h (SOLARIS_XHDTYPE): New define
1481
1482 2005-04-06 Sergey Poznyakoff <gray@mirddin.farlep.net>
1483
1484 * src/tar.c: Minor fixes to text messages. Proposed by Benno
1485 Schulenberg.
1486 * src/extract.c: Likewise
1487 (extract_file): Assign orig_file_name
1488 to save_name uniformly over the program. This fixes matching
1489 directory names at the start of an archive volume.
1490 * src/buffer.c (flush_write): Warn when the name of the archive
1491 straddling volume boundary is longer than 100 characters. Earlier
1492 behavior was to issue a fatal error.
1493 (struct zip_magic): Reverted part of changes from 2005-04-04.
1494 They make the maintenance too costly. Removing `unsigned'
1495 qualifier from `magic' member should be enough.
1496 * src/compare.c (diff_init): Read directory file if in listed
1497 incremental. This prevents spurious 'Contents differ' diagnostics.
1498 (diff_archive): Minor fixes to text messages
1499 (diff_file,diff_dumpdir,diff_multivol): Assign orig_file_name
1500 to save_name uniformly over the program. This fixes matching
1501 directory names at the start of an archive volume.
1502 * src/create.c: Assign orig_file_name
1503 to save_name uniformly over the program. This fixes matching
1504 directory names at the start of an archive volume.
1505 * src/list.c: Likewise
1506
1507 * tests/multiv03.at: Modified to match the new behavior
1508 * tests/multiv04.at: New file. Test splittind directory members between
1509 the archive volumes.
1510 * tests/Makefile.am: Add multiv04.at
1511 * tests/testsuite.at: Likewise.
1512
1513 2005-04-04 Paul Eggert <eggert@cs.ucla.edu>
1514
1515 * configure.ac (AC_CONFIG_AUX_DIR): Rename from config to build-aux,
1516 for reasons discussed in the thread beginning at
1517 <http://lists.gnu.org/archive/html/bug-gnulib/2005-03/msg00119.html>.
1518 * .cvsignore: Remove config; add build-aux.
1519
1520 * src/buffer.c (struct zip_magic): Use char arrays, not pointers.
1521 The unsigned char * pointer ran afoul of pedantic C compilers, and
1522 we didn't need pointers anyway. Put the size field before the
1523 data to avoid unnecessary padding. All uses changed.
1524 (magic) Make it const, since it doesn't change. All uses changed.
1525
1526 2005-04-02 Paul Eggert <eggert@cs.ucla.edu>
1527
1528 * src/xheader.c (decode_record): Don't dump core when given
1529 a corrupted extended header. Problem reported by Jim Meyering.
1530 Also, check for other ways that the header might be invalid,
1531 e.g., missing newline at end. Do not allow keys with nulls.
1532 Allow blanks before and after length, as POSIX requires.
1533 Do not allow leading "-" in length. Check for length overflow.
1534 (xheader_decode, xheader_decode_global): Let decode_record
1535 check for exhaustion of record.
1536 (xheader_read): Null-terminate the extended record;
1537 decode_record relies on this.
1538
1539 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
1540
1541 * bootstrap (TP_URL): Change from
1542 <http://www2.iro.umontreal.ca/~gnutra/po/maint/tar/> to
1543 <http://www.iro.umontreal.ca/translation/maint/tar/> to avoid
1544 some redirection glitches.
1545 Use "trap - 0" rather than "trap 0" to fix a POSIX-conformance bug.
1546 * doc/.cvsignore: Change "tar.info" to "tar.info*". Sort.
1547 * lib/.cvsignore: Add intprops.h (new gnulib file).
1548
1549 2005-03-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1550
1551 * src/list.c (print_header): Print UID/GID in case of
1552 empty user/group name. This could occur when dumping
1553 files belonging to non-existing users and when listing
1554 broken archives.
1555 Reported by Igor Lautar.
1556
1557 * src/create.c: Correctly parse empty uname/gname
1558 * src/sparse.c (sparse_scan_file): Bugfix. offset had
1559 incorrect type.
1560
1561 * scripts/backup.in: Use `head -n 1'. Provide missing
1562 argument to ${MT_STATUS}. Proposed by Jan Merka.
1563 * scripts/backup.sh.in: Likewise. Fixed typo in
1564 MT_OFFLINE assignment.
1565 * scripts/restore.in (restore_fs): Use root_fs
1566
1567 2005-02-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1568
1569 * src/create.c: Replace strdup with xstrdup
1570 * src/names.c: Likewise
1571 * src/tar.c: Likewise
1572
1573 * tests/append01.at: Added reference to bug-tar archive
1574 * tests/listed02.at: Use -print with find.
1575
1576 2005-02-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1577
1578 * THANKS: Added Tim Adye. Fixed UTF.
1579 * src/list.c (read_header): Removed assignment to
1580 oldgnu_header.isextended. It was breaking append mode.
1581
1582 * tests/append01.at: New test.
1583 * tests/Makefile.am: Added append01.at
1584 * tests/testsuite.at: Likewise
1585
1586 2005-02-06 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1587
1588 * gnulib.modules: New file. List of required gnulib
1589 modules.
1590 * bootstrap: Merge list of required modules from
1591 paxutils with that from tar proper.
1592 * src/tar.c: Various fixes in help and diagnostic messages.
1593
1594 2005-02-05 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1595
1596 * src/common.h (EXTRACT_OVER_PIPE): New macro
1597 * src/compare.c: Code clean up.
1598 * src/extract.c (extract_archive): Do not check for
1599 EXTRACT_OVER_PIPE, decode_options() does this.
1600 * src/misc.c (exec_error,fork_error,dup2_error)
1601 (pipe_error): Removed unneeded functions.
1602 * src/system.c (sys_exec_command): Use xclose, xpipe,
1603 xfork, xdup2 and exec_fatal.
1604 * src/tar.c (options): Improved sorting. Document --backup=off.
1605 (decode_options): Clear backup_option if necessary.
1606
1607 2005-02-05 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1608
1609 Initial implementation of --to-command option proposed
1610 by Hansjoerg Lipp.
1611
1612 * bootstrap: Get setenv module from gnulib
1613 * src/buffer.c: Do not use 8-bit chars in comments
1614 * src/common.h (to_command_option)
1615 (ignore_command_error_option): New globals
1616 (sys_exec_command,sys_wait_command): New commands
1617 * src/extract.c (extract_file): Handle to_command_option
1618 Fix error recovery: decrease `size' by `written', not
1619 by `count', otherwise tar misses the next header
1620 Do not diagnose write error if to_command_option
1621 is set, since the command may have exited prematurely.
1622 It would be better to check for sigpipe, though.
1623 (prepare_to_extract): Handle to_command_option
1624 * src/misc.c (exec_error, fork_error, dup_error)
1625 (pipe_error): New functions
1626 * src/system.c (sys_exec_command)
1627 (sys_wait_command): New functions
1628 * src/tar.c: Handle new options --to-command,
1629 --ignore-command-error
1630 * THANKS: Added Hansjoerg Lipp
1631
1632 2005-02-03 Paul Eggert <eggert@cs.ucla.edu>
1633
1634 * src/list.c (from_header): New arg OCTAL_ONLY, normally false.
1635 All uses changed. Fix typo that sometimes suppressed all "Archive
1636 contains obsolescent base-64 headers" warnings, not just the first
1637 one.
1638 (tar_checksum): Accept only octal checksums, since they aren't
1639 supposed to overflow into weird formats.
1640
1641 Adjust to gnulib changes.
1642 * lib/.cvsignore: Add chdir-long.c, chdir-long.h, memrchr.c,
1643 memrchr.h, openat.c, openat.h. Remove pathmax.h (added by
1644 mistake, perhaps?), sysexit.h (my typo), xstrdup.c (gnulib removed
1645 this file). Sort entries.
1646
1647 2005-02-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1648
1649 * src/extract.c: Further rewrite.
1650 * src/buffer.c: Removed unused variables.
1651 * src/list.c: Likewise
1652 * src/tar.c (update_argv): Changed type to void
1653
1654 * src/common.h (OLDGNU_NAME_FIELD_SIZE): New constant
1655 * src/create.c (start_private_header,write_header_name)
1656 (dump_hard_link): Restore compatibility with 1.13.25
1657 * src/extract.c (extract_archive): Rewritten
1658 * src/list.c: Add translators' comments
1659 * src/tar.c (options) Minor spelling fix
1660 * tests/star/quicktest.sh: Determine path to the tar executable.
1661
1662 2005-02-03 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1663
1664 * po/POTFILES.in: Added tests/genfile.c
1665 * src/buffer.c (short_read): Use ngettext()
1666 (new_volume): use quote().
1667 * src/create.c: Use quote()
1668 * src/extract.c: Likewise
1669 * src/xheader.c: Likewise
1670 * src/misc.c: Add comments to translators
1671
1672 * tests/same-order01.at: sort ls output
1673 * tests/sparse01.at (RE_CHECK): Added missing space
1674
1675 * tests/sparse02.at: Test extracting sparse files over a pipe.
1676 * tests/Makefile.am: Added sparse02.at
1677 * tests/testsuite.at: Likewise
1678 * tests/listed02.at: Skip the test on filesystems that do not
1679 update ctime of a file when renaming it. To be reverted when
1680 the new incremental mode is ready.
1681 * tests/sparse01.at: Extract and compare sparse file
1682
1683 2005-02-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1684
1685 * src/sparse.c: Extract sparse files even if the output
1686 fd is not seekable.
1687
1688 2005-02-01 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1689
1690 * bootstrap: Add a comment to lib/Makefile.am saying that this
1691 is an autogenerated file.
1692 Exit with code 1 if any of autotools fails.
1693 * lib/Makefile.tmpl: Insert Emacs magic to the first line.
1694 * tests/Makefile.am: Add append.at
1695
1696 * m4/.cvsignore: Ignore all *.m4 files
1697
1698 2005-01-18 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1699
1700 Rewritten handling of -T (--files-from) option. Now it
1701 inserts the file names immediately into argv array which allows
1702 for:
1703 1) any valid tar options (including another -T) to be used in the file
1704 2) any number of -T options to be given in command line
1705
1706 * configure.ac: Raised version number to 1.15.2
1707 * src/common.h: Include obstack.h
1708 (files_from_option): Removed
1709 (unquote_option): New variable
1710 (stat_fatal): New function
1711 (name_close): Removed function.
1712 * src/incremen.c: Remove inclusion of obstack.h
1713 * src/xheader.c: Likewise.
1714 * src/misc.c (stat_fatal): New function
1715 * src/names.c (name_file): Removed variable.
1716 (read_name_from_file): Removed function. All callers changed.
1717 (name_close): Removed function. All callers changed.
1718 * src/tar.c: New options --unquote (--no-unquote) and
1719 --add-file
1720 (add_file_id,read_name_from_file,update_argv): New functions
1721 (parse_opt): Rewritten handling of -T option. Handle hidden
1722 --HANG option for debugging purposes.
1723 (decode_options): Init unquote_option to true. Init argv_stk.
1724 Remove unneeded references to files_from_option
1725
1726 * doc/tar.texi: Document new options.
1727 Moved rendition macros and option value definitions into
1728 separate files
1729 * doc/rendition.texi: New file
1730 * doc/value.texi: New file
1731 * doc/Makefile.am: Updated
1732
1733 2005-01-13 Paul Eggert <eggert@cs.ucla.edu>
1734
1735 * tests/testsuite.at (RE_CHECK): Use "join - file", not
1736 "join file -", to work around a bug in Solaris 8 join.
1737 Problem reported by Tomohiro Suzuki.
1738
1739 2005-01-13 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1740
1741 * src/list.c (read_header): Fixed calculation of the
1742 size for GNU long name/link. Tar was reading one block
1743 more if name_size was divisible by 512. Thanks Josef
1744 Bauer.
1745 * tests/long01.at: New file. Test listing of GNU long names
1746 divisible by 512.
1747 * tests/pipe.at: Sort tar output.
1748 * tests/Makefile.am: Added long01.at
1749 * tests/testsuite.at: Likewise.
1750 * THANKS: Added Josef Bauer
1751 * lib/.cvsignore: Updated
1752 * m4/.cvsignore: Updated
1753 * NEWS: Updated
1754
1755 2005-01-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1756
1757 * directory: Updated for 1.15.1
1758 * doc/Makefile.am: Use gendocs.sh to generate web documentation
1759 * doc/gendocs_template: Template file for gendocs.sh
1760 * doc/tar.texi: Updated docs for --[no-]same-permissions
1761 * src/tar.c: Reworded docstrings for --[no-]same-permissions
1762
1763 2005-01-06 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1764
1765 * bootstrap: Create m4/paxutils.m4
1766 * configure.ac: Call tar_PAXUTILS
1767 * tests/options02.at: Test that tar correctly handles non-option
1768 arguments interspersed with options.
1769 * tests/Makefile.am: Add options02.at
1770 * tests/testsuite.at: Likewise
1771 * tests/listed02.at: Do not create useless directory
1772
1773 2005-01-05 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1774
1775 * src/tar.c (parse_opt): Bugfix: Use ARGP_KEY_ARG. Thanks
1776 Mike Frysinger <vapier@gentoo.org> for reporting.
1777
1778 2005-01-04 Paul Eggert <eggert@cs.ucla.edu>
1779
1780 * lib/Makefile.tmpl (localedir.h): Omit needless quotes and a
1781 needless sed command. Problem reported by Paul Jarc.
1782
1783 2004-12-23 Paul Eggert <eggert@cs.ucla.edu>
1784
1785 Accommodate latest gnulib.
1786 * doc/.cvsignore: Add getdate.texi.
1787 * bootstrap: Do not treat alloca-opt specially; this is no
1788 longer needed (and breaks builds) with latest gnulib.
1789
1790 2004-12-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1791
1792 * src/tar.c (main): Reverted recent changes (#ifdef).
1793
1794 2004-12-21 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1795
1796 * configure.ac: Raise version number to 1.15.1
1797 Check for locale.h
1798 * NEWS: Entry for 1.15.1
1799 * src/buffer.c: Bugfix. Changes introduced 2004-11-26
1800 broke extraction from stdin.
1801 * src/list.c (from_header, tar_checksum): Changed declaration.
1802 All callers updated.
1803 * src/common.h: Likewise
1804 * src/tar.c (main): Protect invocation of setlocale by
1805 ifdef.
1806
1807 * tests/comprec.at: New test
1808 * tests/pipe.at: New test
1809 * tests/Makefile.am (comprec.at,pipe.at): New tests
1810 * tests/testsuite.at: Likewise
1811 * tests/gzip.at: Use AT_GZIP_PREREQ
1812 * tests/star/pax-big-10g.at: Likewise
1813 * tests/star/ustar-big-2g.at: Likewise
1814 * tests/star/ustar-big-8g.at: Likewise
1815
1816 * tests/extrac04.at: Discard stderr from sort, on some
1817 systems it spits out lots of irrelevant info.
1818 * tests/listed02.at: Likewise
1819
1820 * doc/index.html.in: Rewritten in xhtml to follow recent
1821 GNU site standards.
1822 * THANKS: Updated
1823
1824 2004-12-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1825
1826 Released version 1.15. Sources up to this point are
1827 tagged release_1_15.
1828
1829 * configure.ac: Raised version number to 1.15
1830 * NEWS: Likewise
1831 * directory: Updated
1832 * bootstrap (update_po): Give -r to wget. Always remove index.html
1833 Ignore alloca-opt module (it duplicates alloca)
1834
1835 * tests/Makefile.am: Distribute star/quicktest.sh
1836 * tests/star/README: Document quicktest.sh
1837 * tests/star/qucktest.sh: Removed.
1838 * tests/star/quicktest.sh: New file.
1839
1840 2004-12-18 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1841
1842 * NEWS: Updated
1843 * doc/tar.texi: Document auto-detection of compressed archive
1844 formats.
1845 * src/tar.c (decode_options): Ignore --seek if used with --delete.
1846 Delete.c is based on the assumption that the archive is being
1847 actually read, not lseeked.
1848
1849 * tests/delete05.at: New file
1850 * tests/extrac02.at: Fixed typo in AT_SETUP
1851 * tests/Makefile.am: Added delete05.at
1852 * tests/testsuite.at: Likewise.
1853
1854 2004-12-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1855
1856 * src/delete.c (delete_archive_members): Bugfix: when
1857 attempting to delete an nonexistent member, the last
1858 blocking_factor blocks were zeroed.
1859
1860 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
1861
1862 * TODO: Mention sub-second resolution, lutimes, lchmod.
1863
1864 2004-11-27 Paul Eggert <eggert@cs.ucla.edu>
1865
1866 Adjust to recent gnulib changes.
1867 * doc/getdate.texi: Remove, since bootstrap gets it from gnulib now.
1868 * .cvsignore: Add rmt, rmt/*, rmt/*/*.
1869 * lib/.cvsignore: Add allocsa.c, allocsa.h, allocsa.valgrind,
1870 charset.alias, config.charset, getcwd.c, getcwd.h, localcharset.c,
1871 localcharset.h, ref-add.sed, ref-add.sin, ref-del.sed,
1872 ref-del.sin, setenv.c, setenv.h, unsetenv.c. Remove pathmax.h,
1873 xstrdup.c.
1874 * m4/.cvsignore: Add allocsa.m4, eealloc.m4, getcwd-path-max.m4,
1875 localcharset.m4, realloc.m4, setenv.m4. Remove malloc.m4,
1876 pathmax.m4, realloc.m4.
1877
1878 2004-11-26 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1879
1880 * configure.ac: Raised version number to 1.14.91
1881 * scripts/tarcat: New file
1882 * scripts/Makefile.am: Added tarcat
1883 * src/buffer.c (hit_eof): Changed type to boolean
1884 (read_full_records,reading_from_pipe): New variables
1885 (check_compressed_archive,open_compressed_archive): New functions
1886 (open_archive): Autodetect compressed archives and act accordingly.
1887 Set reading_from_pipe. This fixes controversial set of changes
1888 introduced 2004-05-11,2004-03-22.
1889 * src/list.c (tar_checksum): New function
1890 (read_header): Use tar_checksum().
1891 * src/common.h (tar_checksum): New function
1892
1893 * tests/star/README: Updated
1894 * NEWS: Updated
1895 * PORTS: Updated
1896
1897 2004-11-16 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1898
1899 * src/tar.c (decode_options): Fixed -o semantics. Thanks
1900 Jean Delvare <khali@linux-fr.org>
1901
1902 2004-10-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1903
1904 * bootstrap: Add localcharset
1905 * lib/Makefile.tmpl: Initialize SUFFIXES and CLEANFILES since the
1906 makefile snippet from localcharset uses '+=' on them.
1907 * src/Makefile.am (LDADD): Add LIBICONV
1908 * src/list.c (decode_header): Set uname/gname to NULL if their
1909 header counterparts are empty
1910 * src/tar.c (options): Use OPTION_NO_TRANS
1911 * src/utf8.c: Use locale_charset() from gnulib
1912
1913 * tests/star/README: Updated
1914
1915 * NEWS: Updated
1916 * TODO: Minor fix
1917
1918 2004-10-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1919
1920 * THANKS: Added Bryan Ford
1921 * doc/Makefile.am (.text): Fixed rule
1922 * po/POTFILES.in: Added argp-help.c
1923
1924 2004-10-04 Bryan Ford <baford@mit.edu>
1925
1926 * src/tar.c: New option --exclude-caches, to exclude
1927 cache directories automatically on archive creation.
1928 Cache directories are directories containing a
1929 standardized tag file, as specified at:
1930 http://www.brynosaurus.com/cachedir/spec.html
1931 * src/common.h: New variable exclude_caches_option.
1932 * src/create.c: New function check_cache_directory(),
1933 called from dump_dir0() if exclude_caches_option is set,
1934 to check for a cache directory tag and exclude the directory
1935 if such a tag is found.
1936 * doc/tar.texi: Updated accordingly.
1937
1938 2004-09-16 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1939
1940 * doc/tar.texi: Minor fix
1941 * src/tar.c (options): Minor fix
1942
1943 2004-09-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1944
1945 * TODO: Updated
1946 * lib/Makefile.tmpl: Added 'rtapelib.o: localedir.h' dependency
1947 * src/common.h: Comment WANT_DIRECTORY_REMOVE_OPTION.
1948 * src/extract.c: Normalized use of remove_any_file().
1949 * src/misc.c: Likewise.
1950 * src/tar.c (parse_opt): Emit warning if -l option is used.
1951 (show_default_settings): REMOTE_SHELL may be undefined
1952
1953 2004-09-07 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1954
1955 Test suite rewritten in autotest.
1956
1957 * configure.ac: Updated for autotest
1958 * src/tar.c (argp_program_version): Modified.
1959 * tests/Makefile.am: Rewritten for autotest.
1960
1961 * tests/.cvsignore: Updated
1962 * tests/append.at: New file
1963 * tests/atlocal.in: New file
1964 * tests/delete01.at: New file
1965 * tests/delete02.at: New file
1966 * tests/delete03.at: New file
1967 * tests/delete04.at: New file
1968 * tests/extrac01.at: New file
1969 * tests/extrac02.at: New file
1970 * tests/extrac03.at: New file
1971 * tests/extrac04.at: New file
1972 * tests/extrac05.at: New file
1973 * tests/gzip.at: New file
1974 * tests/ignfail.at: New file
1975 * tests/incremental.at: New file
1976 * tests/link01.at: New file
1977 * tests/listed01.at: New file
1978 * tests/listed02.at: New file
1979 * tests/longv7.at: New file
1980 * tests/multiv01.at: New file
1981 * tests/multiv02.at: New file
1982 * tests/multiv03.at: New file
1983 * tests/old.at: New file
1984 * tests/options.at: New file
1985 * tests/recurse.at: New file
1986 * tests/same-order01.at: New file
1987 * tests/same-order02.at: New file
1988 * tests/sparse01.at: New file
1989 * tests/testsuite.at: New file
1990 * tests/version.at: New file
1991 * tests/volume.at: New file
1992 * tests/star/gtarfail.at: New file
1993 * tests/star/gtarfail2.at: New file
1994 * tests/star/multi-fail.at: New file
1995 * tests/star/pax-big-10g.at: New file
1996 * tests/star/ustar-big-2g.at: New file
1997 * tests/star/ustar-big-8g.at: New file
1998
1999 * tests/preset.in: Removed
2000 * tests/before: Removed
2001 * tests/after: Removed
2002 * tests/version.sh: Removed.
2003 * tests/append.sh: Removed.
2004 * tests/delete01.sh: Removed.
2005 * tests/delete02.sh: Removed.
2006 * tests/delete03.sh: Removed.
2007 * tests/delete04.sh: Removed.
2008 * tests/extrac01.sh: Removed.
2009 * tests/extrac02.sh: Removed.
2010 * tests/extrac03.sh: Removed.
2011 * tests/extrac04.sh: Removed.
2012 * tests/extrac05.sh: Removed.
2013 * tests/gzip.sh: Removed.
2014 * tests/incremen.sh: Removed.
2015 * tests/ignfail.sh: Removed.
2016 * tests/link01.sh: Removed.
2017 * tests/listed01.sh: Removed.
2018 * tests/listed02.sh: Removed.
2019 * tests/longv7.sh: Removed.
2020 * tests/multiv01.sh: Removed.
2021 * tests/multiv02.sh: Removed.
2022 * tests/multiv03.sh: Removed.
2023 * tests/old.sh: Removed.
2024 * tests/options.sh: Removed.
2025 * tests/same-order01.sh: Removed.
2026 * tests/same-order02.sh: Removed.
2027 * tests/volume.sh: Removed.
2028 * tests/recurse.sh: Removed.
2029 * tests/sparse01.sh: Removed.
2030 * tests/star/gtarfail.sh: Removed.
2031 * tests/star/gtarfail2.sh: Removed.
2032 * tests/star/multi-fail.sh: Removed.
2033 * tests/star/ustar-big-2g.sh: Removed.
2034 * tests/star/ustar-big-8g.sh: Removed.
2035 * tests/star/pax-big-10g.sh: Removed.
2036
2037 2004-09-07 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2038
2039 * bootstrap: Install genfile.c from paxutils
2040 * tests/genfile.c: Removed. Integrated into
2041 paxutils.
2042 * tests/mksparse.c: Removed. Integrated into
2043 (paxutils) genfile.c
2044 * tests/Makefile.am: Removed mksparse
2045 * tests/sparse01.sh: Use genfile instead of mksparse
2046
2047 2004-09-06 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2048
2049 Started merging with cpio into paxutils. Sources before
2050 this point are tagged alpha-1_14_90
2051
2052 * Makefile.am: Updated for use with paxutils
2053 * README-alpha: Likewise
2054 * bootstrap: Likewise
2055 * configure.ac: Likewise
2056 * lib/Makefile.tmpl: Likewise
2057 * po/POTFILES.in: Likewise
2058 * src/Makefile.am: Likewise
2059 * src/buffer.c: Likewise
2060 * src/common.h: Likewise
2061 * src/compare.c: Likewise
2062 * src/create.c: Likewise
2063 * src/delete.c: Likewise
2064 * src/extract.c: Likewise
2065 * src/incremen.c: Likewise
2066 * src/list.c: Likewise
2067 * src/mangle.c: Likewise
2068 * src/misc.c: Likewise
2069 * src/names.c: Likewise
2070 * src/sparse.c: Likewise
2071 * src/system.c: Likewise
2072 * src/tar.c: Likewise
2073 * src/update.c: Likewise
2074 * src/utf8.c: Likewise
2075 * src/xheader.c: Likewise
2076
2077 * src/system.h: Removed
2078 * src/rmt.c: Removed
2079 * src/rmt.h: Removed
2080 * src/rtapelib.c: Removed
2081
2082 2004-09-03 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2083
2084 * tests/listed02.sh: Do not depend on any particular ordering
2085 of output.
2086
2087 2004-09-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2088
2089 * doc/tar.texi: Document the use of -C option in
2090 file lists. Document --seek option.
2091 * configure.ac: New option --with-rmt. New configuration variable
2092 DEFAULT_RMT_DIR. Removed DEFAULT_RMT_COMMAND.
2093 * src/Makefile.am: Install rmt into rmtdir
2094 * src/tar.c (usage): Minor fix.
2095 * NEWS: Updated.
2096 * README: Updated.
2097
2098 2004-09-01 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2099
2100 * configure.ac: Raised version number to 1.14.90
2101 * src/common.h (is_individual_file): New prototype
2102 * src/create.c (dump_file0): Fix bug introduced
2103 2004-02-21.
2104 * src/names.c (register_individual_file)
2105 (is_individual_file): New functions.
2106 * tests/listed01.sh: Use genfile instead of dd.
2107 * tests/listed02.sh: New file.
2108 * tests/Makefile.am: Added listed02.sh
2109
2110 * NEWS: Updated
2111
2112 2004-08-31 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2113
2114 * src/sparse.c (sparse_add_map): Fixed improper initializations
2115 of sparse_map_size. We assume that whatever number it contains
2116 describes adequately the current size of sparse_map. The only
2117 number we need to reset is sparse_map_avail.
2118 * src/compare.c (verify_volume): Call set_next_block_after
2119 if read_header returns HEADER_FAILURE
2120 Destroy and reinitialize content of current_stat_info and
2121 extended_header after each iteration (bug reported by
2122 John L. Males <jlmales@yahoo.com>).
2123 Issue a warning if the created archive contains some members
2124 whose file names were stripped off their leading prefixes.
2125 This is a temporary fix of the issue reported by Bdale Garbee
2126 <bdale@gag.com> (Refs: Debian bug 230064, Message-Id
2127 <87n07kyzhi.fsf@rover.gag.com>, Sun, 15 Feb 2004 11:22:17 -0700)
2128
2129 * src/names.c (removed_prefixes_p): New function.
2130
2131 * src/buffer.c: When computing write rate do not take
2132 into account the time needed to verify the archive(s).
2133 The bug reported by John L. Males <jlmales@yahoo.com>
2134 (set_start_time,compute_duration): New functions.
2135 (print_total_written): Use the result of compute_duration().
2136 (close_archive): Call compute_duration.
2137 * src/common.h (set_start_time, removed_prefixes_p): New prototypes.
2138 * src/list.c (decode_header): Fixed initialization
2139 of stat_info->is_sparse
2140 * src/tar.c (main): Call set_start_time().
2141
2142 * src/misc.c (unquote_string): Unquote '\a' and '\v'.
2143 Reported by Helmut Waitzmann <helmut.waitzmann@web.de>.
2144
2145 * NEWS: Updated
2146 * THANKS: Updated
2147
2148 2004-08-30 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2149
2150 * src/tar.c: Fix copy-n-paste errors in the license
2151
2152 2004-08-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2153
2154 * scripts/backup.in: Renamed LIBPATH to LIBDIR.
2155 Use ROOT_FS with -C option. Do not send mail
2156 if ADMINISTRATOR is set to NONE.
2157 * scripts/backup.sh.in (test_root): Append / to
2158 ROOT_FS if it does not already end in it.
2159 * scripts/restore.in: Renamed LIBPATH to LIBDIR.
2160 New option -a (--all). Do not start restore unless
2161 -a or patterns are given.
2162 (restore_fs,restore_files): Fixed use of --listed option.
2163 * doc/tar.texi: Updated
2164 * NEWS: Updated
2165
2166 2004-08-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2167
2168 * src/tar.c (find_argp_option): Fixed typo
2169
2170 2004-08-12 Paul Eggert <eggert@cs.ucla.edu>
2171
2172 Merge argp, getopt, xalloc changes from gnulib.
2173 * bootstrap (gnulib_modules): Add xalloc-die.
2174 Remove code to test for patches; we don't have patches now.
2175 Set LC_ALL=C so that file names sort consistently.
2176 Prefer the gnulib copies of gettext.m4, glibc21.m4,
2177 lib-ld.m4, lib-prefix.m4, po.m4 too.
2178
2179 * patches/getopt.diff: Remove; gnulib now works unpatched.
2180 * configure.ac (_getopt_long_only_r): Remove check.
2181 gl_ARGP now does this for us.
2182 * lib/.cvsignore: Add fnmatch.h, getopt_.h, sysexit.h,
2183 xalloc-die.c.
2184 * src/extract.c: Adjust to changes to gnulib xalloc module.
2185 (extr_init): Remove assignment to xalloc_fail_func; no longer needed.
2186 (xalloc_die): New function.
2187
2188 2004-08-10 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2189
2190 * NEWS: Updated
2191
2192 * src/buffer.c (flush_write): Limit filenames
2193 of the members that straddle multivolume archive
2194 boundary to 100 characters.
2195 (flush_read): Use strncmp when comparing multivolume member
2196 names.
2197 * tests/multiv03.sh: New file
2198 * tests/Makefile.am: Added multiv03.sh
2199
2200 2004-08-09 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2201
2202 * src/list.c (read_and): Call decode_header before
2203 calling skip_member()
2204 (skip_member): Use is_sparse field to determine if the
2205 member is a sparse file.
2206
2207 * tests/Makefile.am: Added extrac05.sh
2208 * tests/extrac05.sh: New file
2209 * tests/append.sh: Rearranged leading comments. Added explicit
2210 references to report messages wherever available.
2211 * tests/delete01.sh: Likewise
2212 * tests/delete02.sh: Likewise
2213 * tests/delete03.sh: Likewise
2214 * tests/delete04.sh: Likewise
2215 * tests/extrac01.sh: Likewise
2216 * tests/extrac02.sh: Likewise
2217 * tests/extrac03.sh: Likewise
2218 * tests/extrac04.sh: Likewise
2219 * tests/gzip.sh: Likewise
2220 * tests/ignfail.sh: Likewise
2221 * tests/incremen.sh: Likewise
2222 * tests/link01.sh: Likewise
2223 * tests/listed01.sh: Likewise
2224 * tests/longv7.sh: Likewise
2225 * tests/multiv01.sh: Likewise
2226 * tests/multiv02.sh: Likewise
2227 * tests/old.sh: Likewise
2228 * tests/options.sh: Likewise
2229 * tests/recurse.sh: Likewise
2230 * tests/same-order01.sh: Likewise
2231 * tests/same-order02.sh: Likewise
2232 * tests/sparse01.sh: Likewise
2233 * tests/version.sh: Likewise
2234 * tests/volume.sh: Likewise
2235
2236 2004-08-08 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2237
2238 * bootstrap: Extended --update-po option to take an
2239 optional argument specifying the po file to update.
2240 * src/create.c: Improved compatibility with 1.13.25
2241 * tests/link01.sh: New file.
2242 * tests/Makefile.am: Added link01.sh
2243
2244 2004-08-06 Paul Eggert <eggert@cs.ucla.edu>
2245
2246 Merge from gnulib.
2247
2248 * patches/argp.diff: Remove; no longer needed.
2249
2250 * lib/.cvsignore: Add stat-macros.h.
2251 Remove addext.c, malloc.c, realloc.c.
2252
2253 * src/extract.c: Include <getcwd.h>.
2254 (extract_archive): Rewrite with new macro IS_ABSOLUTE_FILE_NAME.
2255 * src/extract.c (make_directories):
2256 FILESYSTEM_PREFIX_LEN -> FILE_SYSTEM_PREFIX_LEN.
2257 * src/misc.c (must_be_dot_or_slash): Likewise.
2258 * src/names.c (excluded_name, safer_name_suffix, stripped_prefix_len):
2259 Likewise.
2260 * src/tar.c (parse_opt): Likewise.
2261 * src/incremen.c (purge_directory): Fix format buffer typos in warning
2262 strings.
2263 * src/tar.c (options): Add missing initializers to pacify gcc.
2264 (decode_options): Remove unused var.
2265
2266 2004-08-02 Paul Eggert <eggert@cs.ucla.edu>
2267
2268 * bootstrap (gnulib_modules): Add getpagesize.
2269 * configure.ac (valloc): Remove check; valloc no longer used.
2270 * lib/.cvsignore: Add getpagesize.h.
2271 * m4/.cvsignore: Add getpagesize.m4.
2272 * src/buffer.c (record_buffer): New var.
2273 (open_archive): Don't use valloc; on older or buggy hosts, you can't
2274 free the result. Use page_aligned_alloc instead.
2275 * src/compare.c (diff_init): Likewise.
2276 * src/buffer.c (open_archive): Record the pointer to be freed
2277 into record_buffer.
2278 (close_archive): Free record_buffer.
2279 * src/common.h (page_aligned_alloc): New decl.
2280 * src/misc.c (quote_n, quote): Remove these redundant functions.
2281 (ptr_align): New function, from coreutils/src/system.h.
2282 (page_aligned_alloc): New function.
2283 * src/system.h (valloc): Remove.
2284
2285 2004-07-09 Paul Eggert <eggert@cs.ucla.edu>
2286
2287 * src/extract.c (extract_archive): Do not report an error
2288 when hard-linking X to X when X exists. Problem reported by
2289 Toby Peterson.
2290 * lib/.cvsignore: Add fchown-stub.c.
2291
2292 2004-06-29 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2293
2294 * NEWS: Updated
2295 * src/common.h (root_device): New global.
2296 (gnu_restore): Renamed to purge_directory().
2297 * src/extract.c (extr_init): Save the device number
2298 of the root device.
2299 (extract_archive): Renamed gnu_restore() to purge_directory().
2300 * src/incremen.c (gnu_restore): Renamed to purge_directory().
2301 Do not attempt to purge the directory if it is on a different
2302 device and one_file_system_option is set.
2303
2304 2004-06-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2305
2306 * doc/tar.texi: The actual default for exclude patterns
2307 is --no-anchored. Fixed.
2308 * src/tar.c (options): Likewise.
2309 Thanks "Felix Natter" <felix.natter@ldc.de> for noticing.
2310
2311 2004-06-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2312
2313 * doc/tar.texi: Fixed several inconsistencies.
2314 * src/tar.c: Fixed docstring for --checkpoint option.
2315
2316 2004-05-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2317
2318 * src/buffer.c (seek_archive): New function
2319 * src/common.h (seek_archive): New function
2320 (seekable_archive): New global.
2321 * src/list.c (skip_file): Use seek_archive() if
2322 possible.
2323 * src/tar.c (struct fmttab): Accept 'pax' as alias
2324 for 'posix'
2325 (options): New option -n (--seek).
2326 * src/update.c: Determine type of the archive before
2327 appending to it.
2328
2329 * TODO: Updated.
2330
2331 2004-05-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2332
2333 * bootstrap: New option --update-po
2334 * src/tar.c: New option -H (short alias to --format)
2335 * doc/tar.texi: Document -H option
2336 * src/names.c (safer_name_suffix): Fixed bug introduced
2337 2004-05-11.
2338
2339 2004-05-16 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2340
2341 * bootstrap: Apply patches from patch subdirectory
2342 * patches: New dir
2343 * patches/argp.diff: New file
2344 * patches/getopt.diff: New file
2345 * configure.ac: Check for _getopt_long_only_r and
2346 force using included version of getopt if the function
2347 is not available.
2348 * src/tar.c: Use argp for command line parsing.
2349 * src/system.h: Minor formatting fix
2350 * m4/.cvsignore: Updated
2351 * lib/.cvsignore: Updated
2352 * doc/tar.texi: Minor fix.
2353 * src/extract.c: Fix improper use of 'path' term
2354 * src/incremen.c: Likewise
2355 * src/list.c: Likewise
2356 * src/misc.c: Likewise
2357 * src/names.c: Likewise
2358 * src/rmt.h: Likewise
2359 * src/rtapelib.c: Likewise
2360 * src/update.c: Likewise
2361 * src/xheader.c: Likewise
2362 * tests/star/README: Minor fix
2363
2364 2004-05-13 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2365
2366 * configure.ac: Raised version number to 1.14.1
2367 * src/tar.c: Renamed --strip-path to --strip-components
2368 Changed improper use of _() to ngettext().
2369 * src/extract.c: Renamed strip_path_option to strip_components_option
2370 * src/common.h: Likewise.
2371 * NEWS: Updated.
2372 * doc/tar.texi: Updated
2373
2374 2004-05-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2375
2376 * src/system.c (sys_child_open_for_uncompress): Do not
2377 set read_full_records_option: the compressed archive is
2378 likely not to contain integer number of records. Should
2379 the user wish to use reblocking, he may always give tar
2380 -B option. This is a minor improvement over the change
2381 dated 2004-03-22.
2382 * src/buffer.c (open_archive): Removed assignment to
2383 read_full_records_option.
2384
2385 * src/names.c (safer_name_suffix): (safer_name_suffix): Use "%s"
2386 as the format argument, rather than a possibly-translated variable
2387 string. Patch provided by Jim Meyering <jim@meyering.net>
2388 * src/tar.c (decode_options): Fixed typo in the comment.
2389 * tests/star/README: Minor correction
2390
2391 2004-05-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2392
2393 * directory: New file. GNU directory entry for tar.
2394 * doc/Makefile.am: Rewritten. Added rules for generating
2395 documentation for the project's website.
2396 * doc/.cvsignore: Updated
2397 * doc/index.html.in: New file.
2398
2399 2004-05-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2400
2401 * configure.ac: Raised version number to 1.14
2402 * NEWS: Updated.
2403 * tests/after: Added copyleft statement
2404 * tests/before: Added copyleft statement
2405 * tests/preset.in: Added copyleft statement
2406
2407 Tar 1.14 is released. Sources up to this point are tagged
2408 release_1_14
2409
2410 2004-05-10 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2411
2412 * configure.ac: Fixed prerequisite headers for sys/buf.h
2413 (needed on FreeBSD)
2414 * src/system.h: Likewise.
2415 * tests/after (compare): Fixed argument quoting under eval
2416 * tests/before: Quote TAR_ARCHIVE_FORMATS
2417
2418 2004-05-10 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2419
2420 * NEWS: Updated
2421 * README: Updated
2422 * PORTS: Updated
2423 * configure.ac: Call gl_AC_TYPE_INTMAX_T. Document
2424 DEFAULT_.* variables. Use DEFAULT_RMT_COMMAND to set
2425 the pathname of the rmt utility.
2426 New option --enable-backup-scripts.
2427 * doc/tar.texi: Updated
2428 * scripts/Makefile.am: Install the scripts only if requested
2429 by the configure.
2430 * scripts/backup.in: Fixed --version output.
2431 Fixed initialization of the listing files and printing
2432 the time of the last previous level dump.
2433 * scripts/restore.in: Fixed --version output.
2434 * src/Makefile.am (localedir.h rule): Generate correct
2435 DEFAULT_RMT_COMMAND variable.
2436 * src/common.h (rmt_command_option): New variable.
2437 * src/list.c (read_and): Print block number before
2438 issuing 'Skipping to next header' diagnostics, if
2439 requested by block_number_option.
2440 * src/rtapelib.c: Use rmt_command_option instead of
2441 hardcoded "/etc/rmt".
2442 * src/tar.c: New option --rmt-command.
2443 (decode_options): Handle --rmt-command. Initialize
2444 rmt_command_option to DEFAULT_RMT_COMMAND.
2445
2446 2004-05-09 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2447
2448 * doc/tar.texi: Further update.
2449
2450 2004-05-08 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2451
2452 * configure.ac: Minor fix
2453 * scripts/Makefile.am: Updated
2454 * scripts/backup-specs: Updated
2455 * scripts/backup.in: Minor fixes
2456 * scripts/backup.sh: Removed
2457 * scripts/backup.sh.in: New file. Source for backup.sh
2458 * scripts/restore.in: New file
2459 * scripts/.cvsignore: Updated
2460 * scripts/WARNING: Removed
2461 * doc/tar.texi: Updated
2462 * NEWS: Updated
2463
2464 2004-05-07 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2465
2466 * src/names.c (name_gather): Bugfix: Honor single -C with
2467 --same-order.
2468 * tests/same-order01.sh: New file
2469 * tests/same-order02.sh: New file
2470 * tests/Makefile.am: Updated
2471
2472 * tests/append.sh: Added copyleft header
2473 * tests/delete01.sh: Likewise
2474 * tests/delete02.sh: Likewise
2475 * tests/delete04.sh: Likewise
2476 * tests/extrac01.sh: Likewise
2477 * tests/extrac02.sh: Likewise
2478 * tests/extrac03.sh: Likewise
2479 * tests/extrac04.sh: Likewise
2480 * tests/gzip.sh: Likewise
2481 * tests/ignfail.sh: Likewise
2482 * tests/incremen.sh: Likewise
2483 * tests/multiv01.sh: Likewise
2484 * tests/old.sh: Likewise
2485 * tests/options.sh: Likewise
2486 * tests/recurse.sh: Likewise
2487 * tests/version.sh: Likewise
2488 * tests/volume.sh: Likewise
2489 * tests/star/gtarfail.sh: Likewise
2490 * tests/star/gtarfail2.sh: Likewise
2491 * tests/star/multi-fail.sh: Likewise
2492 * tests/star/pax-big-10g.sh: Likewise
2493 * tests/star/qucktest.sh: Likewise
2494 * tests/star/ustar-big-2g.sh: Likewise
2495 * tests/star/ustar-big-8g.sh: Likewise
2496
2497 * doc/.cvsignore: Updated
2498
2499 2004-05-06 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2500
2501 * configure.ac: Check whether date accepts +format argument
2502 (for backup scripts).
2503 * scripts/level-0: Removed
2504 * scripts/level-1: Removed
2505 * scripts/weekly.new: Removed
2506 * scripts/dump-remind: Removed
2507 * scripts/backup.in: New file
2508 * scripts/backup.sh: New file
2509 * scripts/dump-remind.in: New file
2510 * scripts/backup-specs: Updated
2511 * scripts/Makefile.am: Updated for new directory contents.
2512 * scripts/.cvsignore: Updated
2513
2514 2004-05-05 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2515
2516 * TODO: Updated
2517 * doc/tar.texi: Updated
2518 * src/tar.c: --utc implies -vv
2519
2520 2004-04-28 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2521
2522 * src/utf8.c: Make sure ICONV_CONST is defined. AM_ICONV
2523 does not define it if it fails to find iconv.h.
2524
2525 2004-04-26 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2526
2527 * bootstrap: Use gnulib-tool to generate lib/Makefile.am
2528 and parts of configure.ac
2529 * configure.ac: Invoke tar_GNULIB to configure gnulib stuff.
2530 * lib/Makefile.am: Removed
2531 * lib/Makefile.tmpl: New file.
2532 * lib/.cvsignore: Updated
2533 * m4/.cvsignore: Updated
2534 * src/xheader.c: Include stpcpy.h
2535
2536 * src/create.c: Produce an error, not warning, if the
2537 filename is too long.
2538 * tests/longv7.sh: Synchronized with the recent changes.
2539
2540 2004-04-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2541
2542 * configure.ac: Fixed test for iconv_t
2543 * src/rmt.h: Bugfix by Jürgen Weigert
2544 * THANKS: Add Jürgen Weigert
2545 * tests/star/README: Fixed typo
2546
2547 2004-04-04 Paul Eggert <eggert@twinsun.com>
2548
2549 Merge getdate documentation changes from coreutils.
2550
2551 * doc/getdate.texi: Update from coreutils CVS.
2552 * doc/tar.texi: Fix getdate menu to match getdate.texi's.
2553
2554 Merge recent gnulib changes, and remove some lint.
2555
2556 Improve support for nanosecond-resolution time stamps.
2557 * bootstrap: Add gettime, timespec modules.
2558 * configure.ac (gl_GETTIME, gl_TIMESPEC): Add.
2559 * lib/.cvsignore (getopt_int.h, gettime.c, gettimeofday.c,
2560 timespec.h): Add.
2561 * lib/Makefile.am (libtar_a_SOURCES): Add gettime.c, timespec.h.
2562 * m4/.cvsignore: Add clock_time.m4, gettime.m4, gettimeofday.m4,
2563 st_mtim.m4, timespec.m4. Remove malloc.m4, realloc.m4.
2564 * src/common.h (newer_mtime_option): Now a struct timespec, not
2565 time_t. All uses changed.
2566 (NEWER_OPTION_INITIALIZED, OLDER_STAT_MTIME): New macros.
2567 * src/create.c (dump_file0): Use OLDER_STAT_TIME to compare times.
2568 * src/incremen.c (scan_path): Likewise.
2569 * src/list.c (read_and): Likewise.
2570 * src/list.c (read_and): Use NEWER_OPTION_INITIALIZED to decide
2571 whether newer_mtime_option is initialized.
2572 * src/tar.c (decode_options): Likewise.
2573 * src/tar.c (decode_options): Adjust to new signature for get_date.
2574
2575 * src/buffer.c (short_read, flush_read): Use size_t, not ssize_t, for
2576 result of safe_read, full_write, and similar functions.
2577 Detect safe_read error by comparing to SAFE_READ_ERROR;
2578 detect full_write error by comparing to 0.
2579 All uses changed.
2580 * src/common.h (write_error_details, sys_write_archive_buffer):
2581 Likewise.
2582 * src/misc.c (write_error_details): Likewise.
2583 * src/rmt.c (main): Likewise.
2584 * src/rmt.h (rmt_read__, rmt_write__): Likewise.
2585 * src/rtapelib.c (rmt_read__, rmt_write__, rmt_ioctl__): Likewise.
2586 * src/sparse.c (sparse_scan_file, sparse_dump_region,
2587 check_sparse_region, check_data_region): Likewise.
2588 * src/system.c (sys_write_archive_buffer, sys_drain_input_pipe,
2589 sys_child_open_for_compress, sys_child_open_for_uncompress): Likewise.
2590 * src/update.c (append_file): Likewise.
2591
2592 * src/buffer.c (clear_read_error_count): Use explicit (void)
2593 to indicate a function with no arguments.
2594 * src/create.c (check_links): Likewise.
2595 * src/system.c (sys_get_archive_stat, sys_save_archive_dev_ino,
2596 sys_detect_dev_null_output, sys_drain_input_pipe, sys_spawn_shell,
2597 sys_reset_uid_gid, sys_get_archive_stat, sys_save_archive_dev_ino,
2598 sys_detect_dev_null_output, sys_drain_input_pipe, sys_spawn_shell):
2599 Likewise.
2600 * src/utf8.c (get_input_charset): Likewise.
2601 * src/xheader.c (xheader_ghdr_name, xheader_write_global,
2602 xheader_decode_global, extended_header_init): Likewise.
2603 * tests/mksparse.c (usage): Likewise.
2604
2605 * src/buffer.c (new_volume): Rename local variables to avoid
2606 shadowing warnings.
2607 * src/common.h (file_dumpable_p, sys_stat_nanoseconds,
2608 sparse_file_p, sparse_member_p, sparse_fixup_header,
2609 sparse_dump_file, sparce_extract_file, sparse_skip_file,
2610 sparse_diff_file): Likewise.
2611 * src/compare.c (diff_archive): Likewise.
2612 * src/create.c (file_dumpable_p, dump_regular_file, dump_dir0,
2613 dump_dir, dump_hard_link, file_count_links, dump_file0, dump_file):
2614 Likewise.
2615 * src/extract.c (repair_delayed_set_stat): Likewise.
2616 * src/misc.c (maybe_backup_file, add_hierarchy_to_namelist):
2617 Likewise.
2618 * src/sparse.c (struct tar_sparse_optab, tar_sparse_dump_region,
2619 tar_sparse_extract_region, sparse_dump_region, sparse_extract_region,
2620 sparse_dump_file, sparse_file_p, sparse_member_p,
2621 sparse_fixup_header, sparse_extract_file, sparse_skip_file,
2622 check_data_region, sparse_diff_file): Likewise.
2623 * src/system.c (sys_stat_nanoseconds): Likewise.
2624 * src/xheader.c (xheader_format_name): Likewise.
2625
2626 * src/common.h (enum old_files): Remove comma before }; not portable.
2627
2628 * src/common.h (read_fatal_details): Add __attribute__ ((noreturn)).
2629 * src/rmt.c (usage): Likewise.
2630 * src/xheader.c (xheader_set_single_keyword): Likewise.
2631 * tests/genfile.c (usage): Likewise.
2632 * tests/mksparse.c (die, usage): Likewise. Also add printf attribute
2633 to die.
2634
2635 * src/common.h (gname_to_gid, uname_to_uid): Add const to avoid
2636 some gcc warnings.
2637 * src/names.c (uname_to_uid, gname_to_gid): Likewise.
2638 * src/utf8.c (struct langtab.lang, struct langtab.terr, struct
2639 langtab.charset, charset_lookup): Likewise.
2640
2641 * src/common.h (name_init): Remove unused args. All callers changed.
2642 * src/names.c (name_init): Likewise.
2643
2644 * src/common.h (usage, xheader_write, xheader_write_global,
2645 sys_reset_uid_gid): New decls.
2646
2647 * src/compare.c (report_difference, process_noop): Add
2648 __attribute__ ((unused)) for unused attributes.
2649 * src/sparse.c (oldgnu_sparse_member_p, star_sparse_member_p):
2650 Likewise.
2651 * src/xheader.c (dummy_coder, dummy_decoder, atime_coder,
2652 gid_coder, gname_coder, linkpath_coder, ctime_coder, mtime_coder,
2653 path_coder, size_coder, uid_coder, uname_coder,
2654 sparse_numblocks_coder): Likewise.
2655
2656 * src/create.c (dump_regular_finish, dump_dir0, dump_dir,
2657 dump_file0): Now static.
2658 * src/utf8.c (charset_lookup): Likewise.
2659 * src/xheader.c (xheader_protected_pattern_p,
2660 xheader_protected_keyword_p, xheader_set_single_keyword,
2661 xheader_keyword_deleted_p, xheader_keyword_override_p,
2662 xheader_list_append, xheader_list_destroy, xheader_set_keyword_equal):
2663 Likewise.
2664 * tests/genfile.c (usage): Likewise.
2665 * tests/mksparse.c (die, mkhole, mksparse, usage, xlat_suffix):
2666 Likewise.
2667
2668 * src/create.c (hash_link): Rewrite to avoid cast.
2669
2670 * src/extract.c (file_newer_p): Use parameter, not global var.
2671 * src/misc.c (write_error_details): Likewise.
2672
2673 * src/extract.c (prepare_to_extract): Remove directory arg; not
2674 used. All callers changed.
2675
2676 * src/misc.c (close_fatal): Remove; not used.
2677 * src/system.c (sys_utimes): Likewise.
2678
2679 * src/rmt.c (get_string): Avoid buffer overrun (off by 1 error).
2680
2681 * src/rmt.c (main): Update copyright date to 2004.
2682 * src/tar.c (decode_options): Likewise.
2683
2684 * src/rtapelib.c (get_status_string): Don't lose errno when
2685 skipping the error messages.
2686 (get_status): Report an error if atol returns a negative number.
2687
2688 * src/utf8.c (struct langtab, langtab, charset_lookup,
2689 get_input_charset) [!defined HAVE_LIBCONV]: Omit unused
2690 definitions.
2691 (iconv_open, iconv, iconv_close) [!defined HAVE_LIBCONV]:
2692 Use macros, not definitions, to avoid type clashes with system
2693 headers.
2694 (charset_lookup): Local var is now auto, not static.
2695 (utf8_convert): Use ICONV_CONST instead of const, to avoid
2696 type clashes.
2697
2698 * src/utf8.c (langtab): Initialize all elements of struct, to
2699 avoid gcc warning.
2700 * src/xheader.c (xhdr_tab): Likewise.
2701
2702 * src/xheader.c: Include fnmatch.h, since we use fnmatch.
2703
2704 * tests/mksparse.c (mkhole): Fix typo: bool was assigned to off_t.
2705
2706 2004-04-04 Sergey Poznyakoff <gray@Noldor.runasimi.org>
2707
2708 * NEWS: Updated
2709 * configure.ac: Raised version number to 1.13.94
2710 * src/system.h: Protect inclusion of <sys/time.h>
2711 by ifdef.
2712 Declare time() if HAVE_DECL_TIME is 0
2713 * tests/.cvsignore: Added mksparse
2714
2715 * tests/sparse01.sh: New file
2716 * tests/multiv02.sh: New file
2717 * tests/Makefile.am: Add sparse01.sh and multiv02.sh
2718 * tests/longv7.sh: Added missing call to 'after'
2719
2720 * src/common.h: Added missing prototypes
2721 * src/compare.c (diff_archive): Use is_sparse member
2722 instead of GNUTYPE_SPARSE.
2723 * src/create.c: Removed unused variables
2724 * src/extract.c (extract_archive): Use sparse_member_p instead
2725 of GNUTYPE_SPARSE.
2726 Removed unused variables
2727 * src/list.c (decode_header): Use sparse_fixup_header to correct
2728 the st_size value.
2729 (print_header): Do not rely on GNUTYPE_SPARSE type.
2730 Use st->stat.st_size to print real file size.
2731 (skip_member): Assign stat_info.file_name to save_name. This fixes
2732 bug reported by Mads Martin Joergensen <mmj@suse.de>
2733 Use sparse_skip_file() to skip sparse members.
2734 * src/rtapelib.c: include "common.h"
2735 * src/sparse.c (struct tar_sparse_optab.sparse_member_p)
2736 (struct tar_sparse_optab.fixup_header): New member
2737 (tar_sparse_member_p): New function.
2738 (tar_sparse_init): Return true if decode_header is not provided
2739 (tar_sparse_fixup_header)
2740 (sparse_member_p,sparse_fixup_header)
2741 (sparse_skip_file)
2742 (oldgnu_sparse_member_p,oldgnu_fixup_header,star_sparse_member_p)
2743 (star_fixup_header, pax_sparse_member_p): New function
2744 (pax_decode_header): Remove
2745 * src/system.h: Include <sys/time.h> and <utime.h> when available
2746 * src/tar.c (usage): Prototype moved to common.h
2747 * src/tar.h (struct tar_stat_info.is_sparse): New member
2748 * src/utf8.c (utf8_convert): Changed prototype
2749 (get_input_charset): Removed unused variable
2750 * src/xheader.c: include <fnmatch.h>
2751 (size_decoder): Assign to both st->archive_file_size and
2752 st->stat.st_size.
2753 (st->stat.st_size): Assign to st->stat.st_size
2754 (sparse_numbytes_decoder): Removed unused variable
2755 * src/.cvsignore: Added .gdbinit
2756 * THANKS: Added Mads Martin Joergensen
2757
2758 2004-03-26 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2759
2760 * src/create.c (write_long_name): Do not allow more than
2761 NAME_FIELD_SIZE-1 characters in a file name for V7 format
2762 archives.
2763 * tests/longv7.sh: New file.
2764 * tests/Makefile.am: Add longv7.sh
2765
2766 2004-03-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2767
2768 * src/buffer.c (open_archive): Clear read_full_records_option
2769 if reading from a pipe.
2770 (short_read): Display warning about the deduced record size
2771 if version > 1
2772 * tests/star/pax-big-10g.sh: Updated to match the above changes.
2773 * tests/star/ustar-big-2g.sh: Likewise.
2774 * tests/star/ustar-big-8g.sh: Likewise.
2775
2776 * configure.ac: Added gl_FUNC_STRTOULL
2777 * src/create.c (start_header): Check for GNU_FORMAT
2778 if incremental_option is set.
2779 * src/xheader.c (to_decimal): New function.
2780 (xheader_format_name): Use to_decimal() instead of snprintf.
2781 * tests/listed01.sh: Use genfile instead of dd
2782 * tests/multiv01.sh: Likewise.
2783
2784 2004-03-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2785
2786 * src/list.c (read_and): Stop processing the archive after
2787 encountering a single zero record. Many old archives contain
2788 arbitrary garbage after it.
2789 The warning is issued anyway.
2790
2791 2004-03-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2792
2793 * src/rtapelib.c (rmt_lseek__,rmt_ioctl__): Bugfix. The
2794 conversion buffer was not null terminated. Fix provided
2795 by Leland Lucius <llucius@tiny.net>
2796 * THANKS: Added Leland Lucius
2797 * src/utf8.c (utf8_convert): Indentation fix.
2798
2799 2004-02-29 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2800
2801 * src/buffer.c (flush_read): Bugfix: the
2802 condition at line 714 included
2803
2804 || (status > 0 && !read_full_records_option)
2805
2806 which is grossly wrong, since even if new_volume() below succeeds,
2807 the subsequent call to rmtread will overwrite the chunk of data
2808 already read in the buffer and thus spoil everything.
2809 * src/system.c (sys_child_open_for_uncompress): Minor stylistic
2810 fix.
2811 * tests/star/multi-fail.sh: New test.
2812 * tests/Makefile.am: Added multi-fail.sh
2813 * tests/star/README: Updated
2814
2815 2004-02-29 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2816
2817 * NEWS: Updated
2818 * configure.ac: Removed spurious AC_CHECK_LIB(iconv)
2819 * src/common.h (utc_option): new global
2820 (enum old_files.KEEP_NEWER_FILES): New element
2821 * src/extract.c: Handle --keep-newer-files option
2822 * src/list.c (tartime): Print UTC if --utc was given.
2823 * src/tar.c: New options: --utc and keep-newer-files
2824
2825 * tests/Makefile.am: Added new tests
2826 * tests/after: Rewritten
2827 * tests/before: Rewritten
2828 * tests/preset.in: Rewritten
2829 * tests/delete03.sh: Accommodate for the new testsuite logic
2830 * tests/gzip.sh: Likewise
2831 * tests/incremen.sh: Likewise
2832 * tests/listed01.sh: Likewise
2833 * tests/multiv01.sh: Likewise
2834 * tests/old.sh: Likewise
2835 * tests/options.sh: Likewise
2836 * tests/version.sh: Likewise
2837 * tests/volume.sh: Likewise
2838
2839 * tests/star: New directory
2840 * tests/star/README: New file
2841 * tests/star/gtarfail.sh: New file
2842 * tests/star/gtarfail2.sh: New file
2843 * tests/star/pax-big-10g.sh: New file
2844 * tests/star/qucktest.sh: New file
2845 * tests/star/ustar-big-2g.sh: New file
2846 * tests/star/ustar-big-8g.sh: New file
2847
2848 2004-02-26 Paul Eggert <eggert@twinsun.com>
2849
2850 * doc/tar.texi (dircategory Individual utilities): Append period,
2851 as suggested by Karl Berry.
2852
2853 2004-02-24 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2854
2855 * src/list.c (decode_header): Call xheader_decode before
2856 the assignment to current_stat_info.archive_file_size.
2857
2858 2004-02-23 Paul Eggert <eggert@twinsun.com>
2859
2860 * configure.ac: Invoke AM_ICONV, to define ICONV_CONST if needed.
2861
2862 2004-02-23 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2863
2864 1.13.93 released.
2865
2866 * NEWS: Updated
2867 * tests/before: Move testing of the prerequisite archive formats
2868 to the separate function 'prereq'. Do not expect any arguments
2869 * tests/delete03.sh: Use prereq() instead of passing arguments
2870 to 'before'.
2871 * tests/incremen.sh: Likewise.
2872 * tests/listed01.sh: Likewise.
2873 * tests/multiv01.sh: Likewise.
2874
2875 2004-02-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2876
2877 Added UTF-8 support. Finished global extended header
2878 support.
2879
2880 * NEWS: Minor fix
2881 * configure.ac: Detect libiconv
2882 * src/utf8.c: New file. Conversions to and from utf-8.
2883 * src/Makefile.am: Added utf8.c
2884 * src/create.c (write_header_name) In pax format, use
2885 "path" keyword if the file name is not ASCII
2886 (start_header): Likewise for uname and gname.
2887 * src/list.c: Decode encountered global headers.
2888 * src/xheader.c: Use keywords from the global
2889 headers.
2890 Correctly handle UTF-8 conversions.
2891 (xheader_list_destroy): New function.
2892 (xheader_set_single_keyword,xheader_set_keyword_equal): Added
2893 missing gettext markers
2894 (decode_record): Rewritten using caller-provided handler and
2895 data closure.
2896 * tests/listed01.sh: Give credit to Andreas Schuldei.
2897
2898 2004-02-21 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2899
2900 * src/create.c (dump_file0): The conditional at line
2901 1296 prevented incremental backups on individual files
2902 from working, as reported by Andreas Schuldei
2903 <andreas@schuldei.org>.
2904
2905 This is due to the condition
2906
2907 (0 < top_level || !incremental_option)
2908
2909 Removing it makes incremental backups work for individual
2910 files as well as for directories. On the other hand, it does
2911 not affect other functionality, as shown by the reasoning below:
2912
2913 To begin with, the two parts of this condition are mutually
2914 superfluous, because
2915
2916 1) when top_level < 0, incremental_option == 1
2917 so the condition yields false
2918 2) when top_level >= 0, incremental_option == 0
2919 so the condition yields true.
2920
2921 In other words, it is completely equivalent to
2922
2923 (!incremental_option)
2924
2925 Now, let's consider the effect of its removal. There are two cases:
2926
2927 1) when incremental_option==1
2928 This means incremental backup in progress. In this case dump_file
2929 is invoked only for directories or for files marked with 'Y' by
2930 get_directory_contents. The latter are those that did not meet the
2931 condition in incremen.c:242, which is exactly the same condition
2932 as this at create.c:1296. So, for these files the check
2933 (!incremental_option) is useless, since the rest of the
2934 conditional will yield false anyway. On the other hand, if
2935 dump_file is invoked on a directory, the conditional will yield
2936 false due to !S_ISDIR assertion, so these will be processed as usual.
2937
2938 Thus, for this case the extra condition (!incremental_option) is
2939 irrelevant, and its removal won't alter the behavior of tar,
2940 *except* that it will enable incremental backups on individual
2941 files, which is the wanted effect.
2942
2943 2) when incremental_option==0
2944 In this case the condition yields true and its removal does not
2945 affect the functionality.
2946
2947 * THANKS: Updated
2948 * configure.ac: Raised patchlevel to 93
2949 * src/incremen.c: Minor stylistic fixes.
2950 * tests/listed01.sh: New test. Check listed incremental
2951 backups on individual files.
2952 * tests/Makefile.am: Added listed01.sh
2953
2954 2004-02-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2955
2956 * src/common.h (simple_finish_header,start_private_header): New
2957 declarations
2958 (xheader_ghdr_name): Changed declaration
2959 * src/create.c (start_private_header): Removed static qualifier.
2960 (write_extended): Removed superfluous last argument. Use
2961 xheader_write()
2962 (simple_finish_header): New function.
2963 (finish_header): Use simple_finish_header() to break recursive
2964 dependency between this function and write_extended().
2965 * src/tar.c (assert_format): Do not bail out if several
2966 --format arguments are given. This is a common case when
2967 TAR_OPTIONS are used.
2968 (decode_options): New option --show-defaults displays the
2969 compiled-in defaults.
2970 Use POSIX format if no --format option was given and
2971 --pax-option was specified.
2972 Do not allow to use --pax-option unless the archive format is
2973 set to POSIX (or reading subcommand is requested).
2974
2975 * src/update.c (update_archive): Write global extended header if
2976 constructed.
2977 * src/xheader.c (xheader_format_name): Bugfix.
2978 (xheader_xhdr_name): Changed the default extended header name
2979 to '%d/PaxHeaders.%p/%f', as POSIX requires.
2980 (xheader_ghdr_name): Removed unused argument.
2981 (xheader_write,xheader_write_global): New function.
2982 (xheader_decode): Modified to honor overrides whatever
2983 the current archive format is.
2984
2985 * src/delete.c (delete_archive_members): Call xheader_decode
2986 unconditionally.
2987 * src/list.c (decode_header): Likewise.
2988 * src/incremen.c (sort_obstack): Fixed typo in the comment
2989
2990 * doc/tar.texi: Document new default for extended
2991 header names.
2992
2993 * tests/before: Accept an optional list of allowed archive
2994 formats. Exit with the status 77 if the current archive
2995 format does not match any of them.
2996 * tests/delete03.sh: Require gnu, oldgnu or posix format
2997 * tests/incremen.sh: Require gnu or oldgnu format
2998 * tests/multiv01.sh: Likewise
2999
3000 2004-02-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3001
3002 * doc/tar.texi (Option Summary): Documented --pax-option
3003 * src/tar.c: Likewise.
3004 * NEWS: Likewise.
3005 * src/create.c (to_chars): Added a comment.
3006 * src/tar.h: Comment to GNU_FORMAT
3007
3008 2004-02-18 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3009
3010 * README: Updated
3011 * configure.ac: Added stpcpy
3012 * bootstrap: Likewise
3013 * lib/Makefile.am: Likewise
3014 * src/common.h (xheader_xhdr_name,xheader_ghdr_name): New
3015 functions
3016 * src/create.c (write_extended): Call xheader_xhdr_name
3017 instead of using hardcoded "././@PaxHeader" name.
3018 * src/tar.c: New option --pax-option (equivalent to -o option
3019 of pax).
3020 * src/xheader.c: Implement pax -o option. Fixed misleading
3021 heading comment (introduced 2003-09-02).
3022 * src/incremen.c: Minor fixes
3023 * m4/.cvsignore: Updated
3024
3025 2004-02-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3026
3027 * src/incremen.c: Removed accumulator stuff in favor of obstack.
3028 (get_directory_contents): Split into two functions
3029 * src/update.c: Minor changes
3030 * doc/tar.texi: Fixed typo
3031
3032 2004-02-15 Paul Eggert <eggert@twinsun.com>
3033
3034 Fix Debian bug 230872, originally reported by Jeff King in
3035 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=230872>.
3036
3037 * doc/tar.texi (posix compliance): Remove. The whole section
3038 was a misunderstanding of what POSIXLY_CORRECT is supposed to
3039 mean. The GNU Coding Standards says that POSIXLY_CORRECT
3040 is for disabling extensions that are incompatible with POSIX:
3041 it is not for disabling compatible extensions. All references
3042 to this section removed.
3043 (posix): This format is created only if the posix format is
3044 specified; it is no longer created if gnu format is specified
3045 and POSIXLY_CORRECT is set.
3046 * src/tar.c (decode_options): Ignore POSIXLY_CORRECT.
3047 POSIX does not specify the behavior of tar, so we should
3048 not worry about POSIXLY_CORRECT here.
3049
3050 2004-01-21 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3051
3052 * Makefile.am: Removed m4
3053 * configure.ac: Require automake-1.8/autoconf-2.59. Removed
3054 m4/Makefile.
3055 * README-alpha: Updated
3056 * bootstrap: Updated TP URL, improved help output. Default
3057 to :ext:anoncvs and set CVS_RSH, unless already set.
3058 * m4/Makefile.am: Removed
3059
3060 2004-01-21 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3061
3062 * bootstrap: Bugfix by Marco Gerards <metgerards@student.han.nl>:
3063 Use $option instead of $1 so all options will be parsed.
3064
3065 2004-01-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3066
3067 Started rewriting buffer.c ...
3068
3069 * bootstrap: New option --no-po
3070 * src/buffer.c (new_volume,check_label_pattern): Changed return type.
3071 (time_to_start_writing): Changed data type
3072 (file_to_switch_to): Removed. Variable never assigned to.
3073 (open_archive) Moved option compatibility checks to tar.c
3074 Other minor changes.
3075 * src/common.h (maybe_backup_file): Changed return type
3076 * src/misc.c: Likewise.
3077 * src/create.c: Updated invocations of safer_name_suffix
3078 * src/extract.c: Likewise
3079 * src/delete.c: Updated assignment to write_archive_to_stdout
3080 * src/tar.c (decode_options): More option compatibility checks
3081 (moved from buffer.c)
3082 * src/update.c (time_to_start_writing): Changed data type.
3083 * tests/recurse.sh: New test case.
3084 * tests/mksparse.c: New file.
3085 * tests/Makefile.am: Added recurse.sh and mksparse.c
3086
3087 2004-01-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3088
3089 * src/sparse.c (sparse_diff_file): Bugfix. Thanks
3090 Martin Simmons for the patch.
3091 * src/create.c (dump_dir0): Bugfix. Thanks Piotr Czerwinski
3092 <pius@pld-linux.org> for the patch.
3093
3094 2003-12-26 Paul Eggert <eggert@twinsun.com>
3095
3096 Synchronize with Gettext 0.13.1, Automake 1.8, Autoconf 2.59,
3097 and translation website.
3098
3099 * bootstrap: Don't bother skipping codeset.m4, glibc21.m4,
3100 intdiv0.m4, inttypes_h.m4, inttypes.m4, inttypes-pri.m4,
3101 isc-posix.m4, and lcmessage.m4 from gnulib. This list of files is
3102 a bit obsolete anyway, now that gettext 0.13.1 is out. Also, the
3103 files are replaced by autoreconf. Also, there seems to be a bug
3104 in gettext/autoconf/automake if we try to omit these files after
3105 autoreconf has replaced them, even though the gettext manual says
3106 they're optional. So give up and just include them for now, even
3107 though they make 'configure' longer and slower.
3108
3109 Change translation URL from
3110 <http://www.iro.umontreal.ca/contrib/po/maint/tar/> to
3111 <http://www2.iro.umontreal.ca/~gnutra/po/maint/tar/> to
3112 accommodate translator website revamp.
3113
3114 Fail if autoreconf fails.
3115
3116 * m4/.cvsignore: Add intmax.m4, longdouble.m4, printf-posix.m4,
3117 signed.m4, size_max.m4, wchar_t.m4, wint_t.m4, xsize.m4, to
3118 ignore files now supplied by gettext 0.13.1.
3119
3120 2003-12-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3121
3122 Synchronized with the backup repository on Mirddin
3123
3124 2003-12-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3125
3126 * configure.ac: Check for varios members of struct stat
3127 that may represent file modification times with a subsecond
3128 precision.
3129 Check for utimes (for future use)
3130 * src/buffer.c (short_read): Issue a warning on short reads.
3131 * src/common.h (sys_stat_nanoseconds): New function
3132 * src/create.c (dump_file0): Use sys_stat_nanoseconds().
3133 * src/list.c (read_and): Treat only two successive zero
3134 filled blocks as an EOF indicator. Issue a warning if
3135 a single one is encountered.
3136 * src/system.c (sys_stat_nanoseconds): New function
3137 * src/tar.h (tar_stat_info.atime_nsec,mtime_nsec,ctime_nsec): New
3138 members.
3139 * src/xheader.c (code_time,decode_time): Support for subsecond
3140 precision.
3141 (atime_coder,atime_decoder,ctime_coder,ctime_decoder)
3142 (mtime_coder,mtime_decoder): Update invocations of code_time and
3143 decode_time.
3144 (gid_decoder,size_decoder,uid_decoder,sparse_size_decoder)
3145 (sparse_numblocks_decoder,sparse_offset_decoder)
3146 (sparse_numbytes_decoder): Updated
3147
3148 2003-12-18 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3149
3150 * src/names.c (safer_name_suffix): Reverted change made
3151 2003-11-14. Reason: Discussion with Paul Eggert and
3152 Jean-Louis Martineau. See also ChangeLog entry from
3153 1999-08-14.
3154 * tests/delete03.sh: Likewise.
3155 * tests/extrac04.sh: Likewise.
3156 * tests/multiv01.sh: Likewise.
3157
3158 2003-12-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3159
3160 * src/incremen.c (write_directory_file): Use sys_truncate
3161 * src/list.c (print_header): Use archive_file_size member
3162 when printing real file size.
3163 * src/sparse.c (sparse_scan_file): Correctly handle files with
3164 a hole at the end.
3165 (sparse_dump_region,sparse_extract_region): Allow for zero size
3166 trailing blocks
3167
3168 2003-12-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3169
3170 * configure.ac: Raised version number to 1.13.92
3171 * src/list.c (decode_header): Discern between pax and ustar
3172 formats
3173 Initialize current_stat_info.archive_file_size.
3174
3175 NOTE: Modifications from this date on are temporarily
3176 stored on local CVS on mirddin. This repository will
3177 be synchronized with Savannah as soon as the latter
3178 becomes operational again.
3179
3180 2003-12-01 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3181
3182 * TODO: Updated
3183 * src/sparse.c: Initial implementation of GNU/pax sparse
3184 file format.
3185 * src/common.h (xheader_store): Changed prototype.
3186 * src/create.c: Update calls to xheader_store
3187 * src/extract.c (extract_archive): Check reported size vs.
3188 archive file size to determine if we have to do with a
3189 sparse file.
3190 * src/tar.c (usage): Cleaned up the sample argument to --newer
3191 option.
3192 (decode_options): Allow --sparse for POSIX_FORMAT archives.
3193 * src/xheader.c (struct xhdr_tab.coder; all coder function): Added
3194 extra argument
3195 Implemented GNU.sparse.* keywords.
3196
3197 2003-11-30 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3198
3199 * configure.ac: Check for setlocale. Thanks Bruno Haible for
3200 reporting.
3201
3202 2003-11-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3203
3204 * src/create.c (write_gnu_long_link): Use oldgnu
3205 magic with @LongLink blocks.
3206
3207 2003-11-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3208
3209 * src/tar.h: Support for star sparse format.
3210 * src/sparse.c: Likewise.
3211
3212 2003-11-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3213
3214 * src/sparse.c (sparse_diff_file): New function
3215 * src/common.h (sys_compare_uid,sys_compare_gid): New functions
3216 (sys_compare_uid_gid): Removed.
3217 (sys_compare_links,report_difference): Changed prototype
3218 (sparse_diff_file): New function
3219 * src/system.c (sys_compare_uid,sys_compare_gid): New functions
3220 (sys_compare_uid_gid): Removed.
3221 (sys_compare_links): Changed declaration
3222 * src/compare.c (diff_archive): Use sparse_diff_file.
3223
3224 2003-11-16 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3225
3226 Rewritten sparse file handling.
3227
3228 * src/sparse.c: New file. Provides a universal framework
3229 for various methods for sparse files handling.
3230 * src/Makefile.am: Added sparse.c
3231 * src/common.h (struct sp_array,sparsearray,sp_array_size)
3232 (init_sparsearray,fill_in_sparse_array): Removed
3233 (enum dump_status): New data type
3234 (pad_archive,close_diag,open_diag,read_diag_details)
3235 (readlink_diag,savedir_diag,seek_diag_details,stat_diag): New
3236 functions.
3237 (sparse_file_p,sparse_dump_file,sparse_extract_file): New
3238 functions.
3239 (print_header): Changed prototype declaration.
3240 * src/tar.h (struct sp_array): Declaration from common.h
3241 (struct tar_stat_info): New members archive_file_size,
3242 sparse_map_avail,sparse_map.
3243 * src/create.c: Major rewrite.
3244 * src/extract.c: Use new sparse file interface.
3245 * src/compare.c (diff_sparse_files): Temporary placeholder.
3246
3247 * src/buffer.c: Minor changes
3248 * src/tar.c: Likewise.
3249 * src/list.c: Likewise.
3250 * src/misc.c (close_diag,open_diag,read_diag_details)
3251 (readlink_diag,savedir_diag,seek_diag_details,stat_diag): New
3252 diagnostics functions.
3253 * src/incremen.c: Use new diagnostics functions.
3254 * src/names.c: Likewise.
3255
3256 2003-11-14 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3257
3258 * configure.ac: Fixed check for setsockopt
3259
3260 * src/create.c: Do not zero-terminate name field if
3261 the name is exactly 100 characters long.
3262 (write_ustar_long_name): Fixed cheking for unsplittable
3263 names.
3264
3265 2003-11-14 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3266
3267 * src/create.c (start_header): Removed debugging hook
3268 (dump_file): Fixed handling of linkname field.
3269 * src/names.c (safer_name_suffix): If the input
3270 file name ends with a slash, output one should do so
3271 as well.
3272 * doc/tar.texi: Documented --format=ustar
3273
3274 2003-11-14 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3275
3276 * src/tar.h (archive_format): USTAR_FORMAT: New type.
3277 * src/create.c: Added POSIX.1-1988 support.
3278 * src/names.c (safer_name_suffix): Skip leading ./
3279 * src/tar.c: New option --format=ustar forces
3280 POSIX.1-1988 archive format.
3281 * tests/delete03.sh: Updated.
3282 * tests/extrac04.sh: Updated.
3283 * tests/multiv01.sh: Updated.
3284
3285 2003-11-13 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3286
3287 * src/list.c (read_and): Initialize current_stat_info
3288 and extended_header at the start of the loop.
3289 * src/names.c (all_names_found): Check if the argument
3290 contains valid filename. Fixes coredump on `not_a_tar_file'
3291 * src/xheader.c (atime_decoder,gid_decoder,ctime_decoder)
3292 (mtime_decoder,size_decoder,uid_decoder): Use xstrtoumax.
3293 Fixes `pax-big-10g' bug.
3294
3295 2003-11-12 Paul Eggert <eggert@twinsun.com>
3296
3297 Fix some C compatibility bugs reported by Joerg Schilling.
3298
3299 * src/common.h (stripped_prefix_len): Fix misspelling
3300 "stripped_path_len" in declaration.
3301 * src/rmt.c (main): Use "return FOO;" rather than
3302 "exit (FOO);"; we no longer have to worry about
3303 pre-ANSI hosts that mishandled returned values from "main".
3304 * src/tar.c (main): Likewise. This avoids warnings on some
3305 compilers.
3306 * src/system.c: Include signal.h, for 'kill'.
3307 * src/system.h (DEV_BSIZE): Remove.
3308 (DEFAULT_ST_BLKSIZE): New macro.
3309 (ST_BLKSIZE): Use it, instead of DEV_BSIZE.
3310 * src/tar.c (enum): Remove comma just before }.
3311
3312 2003-11-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3313
3314 * src/list.c (decode_header): Initialize st_atime and
3315 st_ctime.
3316
3317 2003-11-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3318
3319 * configure.ac (tar_save_LIBS): Bugfix. Thanks Adrian
3320 Bunk <bunk@fs.tum.de> for reporting.
3321 * doc/tar.texi: Fixed spelling. Thanks Martin Buchholz
3322 <martin@xemacs.org> for spotting.
3323
3324 2003-11-04 Paul Eggert <eggert@twinsun.com>
3325
3326 * src/xheader.c (xhdr_tab): Make it extern, not static, as C89 and
3327 C99 require this.
3328
3329 2003-10-26 Paul Eggert <eggert@twinsun.com>
3330
3331 * src/system.c (sys_spawn_shell): Cast trailing null to (char *).
3332 Bug reported by Christian Weisgerber.
3333
3334 2003-10-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3335
3336 * AUTHORS: Updated
3337 * NEWS: Updated
3338 * src/tar.c (decode_options): Removed superfluous archive format
3339 check
3340 * doc/tar.texi: Documented new features.
3341
3342 2003-10-08 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3343
3344 * NEWS: Updated
3345 * THANKS: Added Wojciech Polak
3346 * configure.ac: Added checks for missing functions. Raised
3347 version number to indicate alpha release.
3348 * lib/Makefile.am: Added missing headers
3349 * lib/waitpid.c: Added missing includes.
3350 * src/extract.c: Likewise.
3351 * src/names.c: Removed spurious includes.
3352 * src/xheader.c: Likewise.
3353 * src/system.h [MSDOS]: Fixed spelling of EACCES. Added
3354 macro overriding broken mkdir prototypes.
3355
3356 2003-10-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3357
3358 * configure.ac: Check for dev_t and ino_t.
3359 * m4/Makefile.am: Added missing files.
3360 * src/system.c: New file.
3361 * src/Makefile.am: Added system.c
3362 * src/common.h: Prototypes for functions from system.c
3363 * src/system.h (SET_BINARY_MODE, ERRNO_IS_EACCESS): New defines
3364 * src/buffer.c: Moved system dependencies to system.c
3365 * src/compare.c: Likewise.
3366 * src/create.c: Likewise.
3367 * src/delete.c: Likewise.
3368 * src/extract.c: Likewise.
3369 * src/rtapelib.c: Likewise.
3370
3371 2003-10-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3372
3373 Implemented --occurrence option.
3374
3375 * NEWS: Updated.
3376 * src/tar.c: New option --occurrence.
3377 * src/common.h (occurrence_option): New global
3378 (struct name): Changed `found' member to `uintmax_t
3379 found_count'.
3380 (names_done): Removed
3381 (all_names_found): Changed prototype.
3382 (ISFOUND,WASFOUND): New macros
3383 * src/delete.c (delete_archive_members): Honor --occurrence
3384 option.
3385 * src/list.c (read_and): Likewise.
3386 * src/names.c: Count number of occurrences of each name in the
3387 archive.
3388 (name_match): Honor --occurrence option.
3389 (names_done): Removed
3390 (all_names_found,names_notfound): Rewritten.
3391
3392 2003-10-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3393
3394 * src/tar.c: Removed extra precaution regarding
3395 subcommand_option == CAT_SUBCOMMAND
3396 * lib/Makefile.am: Updated
3397
3398 2003-10-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3399
3400 * src/common.h (names_done): New function.
3401 * src/names.c: Likewise.
3402 * src/list.c (read_and): Use all_names_found() as `while'
3403 condition.
3404 * src/tar.c: New option --first-copy
3405 * NEWS: Updated
3406
3407 2003-09-24 Paul Eggert <eggert@twinsun.com>
3408
3409 * src/rmt.c (main): Don't translate Copyright string; international
3410 law says the word "Copyright" should be in English.
3411 * src/tar.c (decode_options): Likewise.
3412
3413 2003-09-22 Paul Eggert <eggert@twinsun.com>
3414
3415 * doc/tar.texi (extracting untrusted archives): New section.
3416
3417 * src/common.h (stripped_path_len): Renamed from cut_path_elements.
3418 Return size_t, not pointer, so that we don't have to worry about
3419 violating the C standard by converting char const * to char *.
3420 All callers changed.
3421 * src/names.c (stripped_path_len): Likewise. Strip file system
3422 prefix, too. Count adjacent slashes as if they were one slash;
3423 that is the POSIX standard.
3424
3425 2003-09-17 Paul Eggert <eggert@twinsun.com>
3426
3427 * README-alpha: Document maintainer tool assumptions a bit. GNU
3428 'sed' is no longer required. For GNU m4 1.4, suggest the patch in
3429 Debian bug 211447. Fix minor misspellings/whitespace nits.
3430
3431 * configure.ac (AC_AIX, AC_MINIX): Remove; subsumed by
3432 gl_USE_SYSTEM_EXTENSIONS.
3433
3434 * lib/.cvsignore: Add exit.h, time_r.c, time_r.h.
3435 * m4/.cvsignore: Add restrict.m4, time_r.m4.
3436
3437 2003-09-17 Paul Eggert <eggert@twinsun.com>
3438
3439 * bootstrap: Don't use "for option; do";
3440 Solaris 8 /bin/sh doesn't like that.
3441
3442 2003-09-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3443
3444 * README-alpha: Updated
3445 * bootstrap: Updated
3446
3447 2003-09-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3448
3449 * README-alpha: Updated
3450 * bootstrap: Updated
3451 * po/POTFILES.in: Added src/xheader.c
3452 * src/common.h (cut_path_elements): Added proto.
3453
3454 2003-09-05 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3455
3456 * src/buffer.c: Use ngettext where appropriate.
3457 * src/compare.c: Likewise.
3458 * src/create.c: Likewise.
3459 * src/misc.c: Likewise.
3460 * src/tar.c: Likewise.
3461 * src/update.c: Likewise.
3462
3463 2003-09-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3464
3465 * .cvsignore: Added *.shar.gz
3466 * NEWS: Updated
3467 * TODO: Updated
3468 * src/common.h (strip_path_elements): New variable.
3469 * src/extract.c (extract_archive): Implemented --strip-path
3470 * src/names.c (cut_path_elements): New function.
3471 * src/tar.c: New option --strip-path=NUM.
3472 (decode_options) Assign boolean values to bool variables.
3473
3474 2003-09-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3475
3476 * src/delete.c: Fixed deletion from the POSIX archives.
3477 * src/list.c (read_header): Minor change.
3478 * src/tar.c (main): Do not check for volume_label_option
3479 if subcommand_option is not CREATE_SUBCOMMAND.
3480 * src/xheader.c (xheader_decode): Store the header as
3481 well (for eventual delete).
3482
3483 * tests/incremen.sh: Explicitly request GNU format. This will
3484 disappear when GNU extended header keywords are working.
3485 * tests/multiv01.sh: Likewise
3486 * tests/volume.sh: Likewise
3487
3488 2003-09-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3489
3490 * src/create.c: Support for "linkpath" extended keyword.
3491 * src/xheader.c (decode_record): Reversed the return
3492 condition.
3493
3494 2003-09-03 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3495
3496 * configure.ac: Allow to redefine the default output format.
3497 * src/tar.c: Use DEFAULT_ARCHIVE_FORMAT macro
3498 (archive_format_string): New function.
3499 (usage): Updated help output.
3500 * README: Updated.
3501 * NEWS: Updated.
3502 * TODO: Updated.
3503
3504 2003-09-02 Paul Eggert <eggert@twinsun.com>
3505
3506 * src/common.h (destroy_stat, xheader_decode, xheader_store,
3507 xheader_read, xheader_finish, xheader_destroy): Add decls;
3508 C99 requires this.
3509
3510 * src/create.c (write_extended): Remove unused local 'bufsize'.
3511
3512 * src/delete.c (delete_archive_members): Handle case of
3513 HEADER_SUCCESS_EXTENDED followed by HEADER_FAILURE.
3514 * src/list.c (read_and): Abort if HEADER_SUCCESS_EXTENDED
3515 occurs, as it's not possible.
3516 * src/update.c (update_archive): Likewise.
3517
3518 Use "const" when possible in new code.
3519 * src/tar.c (struct fmttab.name): Now char const *. All uses changed.
3520 (fmttab): Now const. All uses changed.
3521 * src/xheader.c (struct xhdr_tab.keyword): Now pointer to const.
3522 (struct xhdr_tab.coder, struct xhdr_tab.decoder, locate_handler,
3523 decode_record, xheader_store, xheader_print, code_string, code_time,
3524 code_num, dummy_coder, dummy_decoder, atime_coder, atime_decoder,
3525 gid_coder, gid_decoder, gname_coder, gname_decoder, linkpath_coder,
3526 linkpath_decoder, ctime_coder, ctime_decoder, mtime_coder,
3527 mtime_decoder, path_coder, path_decoder, size_coder, size_decoder,
3528 uid_coder, uid_decoder, uname_coder, uname_decoder):
3529 Use pointers to const when possible.
3530 (xhdr_tab): Now const.
3531
3532 * src/tar.c (fmttab): Avoid GCC warning by not eliding initializers.
3533 (set_archive_format): Report an error if no format name matches,
3534 instead of returning an undefined value.
3535
3536 * src/xheader.c (struct xhdr_tab.decoder, dummy_decoder,
3537 atime_decoder, gid_decoder, gname_decoder, linkpath_decoder,
3538 ctime_decoder, mtime_decoder, path_decoder, size_decoder,
3539 uid_decoder, uname_decoder): Remove unused keyword arg.
3540 All uses changed.
3541
3542 * src/tar.c (set_archive_format): Now static.
3543 * src/xheader.c (xhdr_tab, format_uintmax): Now static.
3544
3545 * src/xheader.c (dummy_coder, dummy_decoder, atime_coder,
3546 atime_decoder, gid_coder, gid_decoder, gname_coder, gname_decoder,
3547 linkpath_coder, linkpath_decoder, mtime_coder, mtime_decoder,
3548 ctime_coder, ctime_decoder, path_coder, path_decoder, size_coder,
3549 size_decoder, uid_coder, uid_decoder, uname_coder, uname_decoder):
3550 Remove forward decls; no longer needed.
3551 (xhdr_tab): Move to end, so that the forward decls aren't needed.
3552 Add a forward declaration.
3553
3554 Use 'bool' in new code, when appropriate.
3555 * src/xheader.c (decode_record): Return bool, not int.
3556 * src/common.h (read_header): Since it accepts bool, change
3557 all callers to use false and true rather than 0 and 1.
3558
3559 * src/xheader.c (decode_record): Fix misspelling in diagnostic
3560 "extended headed" -> "extended header".
3561
3562 GNU coding style fixes.
3563 * src/xheader.c (decode_record, xheader_decode):
3564 Do not use decls like "char *p, *q;".
3565
3566 Minor style fixes.
3567 (xheader_store): Avoid parentheses around object operand of sizeof.
3568
3569 2003-09-03 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3570
3571 * src/create.c (start_header): Store long file names
3572 in "path" keyword of an extended header if in POSIX
3573 mode.
3574 (finish_header): print header before calling write_extended().
3575 * src/list.c (list_archive): Always decode the header. This
3576 is necessary so the extended header is processed and the correct
3577 filename is printed no matter what the state of verbose_option.
3578 * src/xheader.c (xhdr_tab): Reserved GNU keywords (commented out
3579 for the time being).
3580
3581 2003-09-01 Paul Eggert <eggert@twinsun.com>
3582
3583 Update from gnulib, and correct fnmatch to fnmatch-gnu.
3584 * bootstrap (gnulib_modules): Change fnmatch to fnmatch-gnu.
3585 Sort.
3586 * configure.ac (gl_USE_SYSTEM_EXTENSIONS): Use this instead
3587 of AC_GNU_SOURCE.
3588 * lib/.cvsignore: Add alloca.h, stdbool.h. Sort. Append newline.
3589 * lib/Makefile.am (lib_OBJECTS): New macro, for convenience when
3590 copying rules from gnulib module descriptions.
3591 (BUILT_SOURCES, EXTRA_DIST, all-local, alloca.h):
3592 Update from gnulib modules alloca, fnmatch, getline, stdbool.
3593 * m4/.cvsignore: Add utimes-null.m4. Sort.
3594
3595 2003-09-01 Sergey Poznyakoff
3596
3597 Added initial support for creating POSIX headers.
3598
3599 * src/common.h (MAXOCTAL11,MAXOCTAL7): New defines
3600 (string_to_chars): New functions
3601 (struct xheader): Changed structure
3602 (gid_to_gname,gname_to_gid,uid_to_uname,uname_to_uid): Changed
3603 prototypes.
3604 * src/create.c (string_to_chars): New function.
3605 (write_extended): New function
3606 (start_header): Create extended POSIX headers if necessary.
3607 (finish_header): Likewise.
3608 * src/list.c (print_header): Take user/group from
3609 current_stat_info.
3610 * src/names.c (gid_to_gname,gname_to_gid)
3611 (uid_to_uname,uname_to_uid): Changed prototypes.
3612 * src/tar.c: New option --format.
3613 * src/tar.h (OLDGNU_COMPATIBILITY): Removed
3614 (struct extra_header): Removed unused structure.
3615 (union block.extra_header): Removed unused member.
3616 * src/xheader.c: Implemented coder functions.
3617 * bootstrap: Added obstack.
3618 * lib/.cvsignore: Likewise.
3619 * configure.ac: Added 'gl_OBSTACK'
3620 * m4/Makefile.am: Added new files.
3621 * m4/.cvsignore: Likewise.
3622 * TODO: Minor formatting change
3623
3624 2003-08-31 Sergey Poznyakoff
3625
3626 Added initial support for POSIX extended and STAR headers
3627 (only for listing/extracting).
3628
3629 * src/xheader.c: New file.
3630 * src/Makefile.am: Added xheader.c
3631 * src/tar.h (struct star_header): New datatype
3632 (XHDTYPE,XGLTYPE): New defines
3633 (enum archive_format:STAR_FORMAT): New member
3634 (struct tar_stat_info): New datatype.
3635 (union block.star_header): New member.
3636 * src/common.h (orig_file_name,current_file_name)
3637 (current_trailing_slash,current_link_name): Removed variables.
3638 (current_stat_info): New variable
3639 (current_stat): Removed
3640 (extended_header): New variable
3641 (decode_header): Changed prototype.
3642 * src/list.c (decode_header): Added initial support for POSIX extended
3643 and STAR headers.
3644 (skip_member): Check oldgnu_header only if current_format is set
3645 to OLDGNU_FORMAT.
3646 * src/buffer.c: Use current_stat_info
3647 * src/compare.c: Likewise.
3648 * src/create.c: Likewise.
3649 * src/delete.c: Likewise.
3650 * src/incremen.c: Likewise.
3651 * src/mangle.c: Likewise.
3652 * src/update.c: Likewise.
3653 * src/extract.c: Likewise.
3654 (make_directories): Improved check for the existence of the directory
3655 * src/tar.c (destroy_stat): New function.
3656
3657 2003-08-29 Paul Eggert <eggert@twinsun.com>
3658
3659 * NEWS, bootstrap: Drop en_GB locale; it was more trouble than it
3660 was worth (e.g., different users in en_GB disagree about -ize
3661 versus -ise).
3662 * po/en_GB.po: Remove.
3663
3664 2003-07-28 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3665
3666 * TODO: Updated
3667 * NEWS: Updated
3668 * src/tar.c: Removed support for the obsolete command line
3669 options.
3670 * doc/tar.texi: Removed references to the obsolete command
3671 line options.
3672
3673 2003-07-27 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3674
3675 * TODO: Updated
3676 * NEWS: Updated
3677 * doc/tar.texi: Updated
3678 * src/common.h (check_links_option): New variable
3679 (orig_file_name): New variable
3680 (check_links): New proto.
3681 * src/create.c (struct link.nlink): New member
3682 (link_table): Static for the module.
3683 (dump_file): Update `link' member when adding new links
3684 to the link_table.
3685 (check_links): New function.
3686 * src/list.c (print_header): Use orig_file_name.
3687 * src/tar.c: New option --check-links. Changed semantics of
3688 -o to comply to UNIX98 when extracting and to its previous
3689 semantics otherwise.
3690 (main): Call check_links if --check-links. was given.
3691
3692 2003-07-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3693
3694 * src/list.c (print_header): Revised
3695 * NEWS: Started the entry for 1.13.26
3696 * doc/Makefile.am (tar.dvi): Fixed TEXINPUTS value.
3697
3698 2003-07-24 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3699
3700 * .cvsignore: Added to the repository.
3701 * doc/.cvsignore: Likewise.
3702 * lib/.cvsignore: Likewise.
3703 * m4/.cvsignore: Likewise.
3704 * po/.cvsignore: Likewise.
3705 * scripts/.cvsignore: Likewise.
3706 * src/.cvsignore: Likewise.
3707 * tests/.cvsignore: Likewise.
3708
3709 * lib/Makefile.am: Added exitfail.[hc]
3710 * src/misc.c (chdir_do): Fixed call to restore_cwd
3711 * src/buffer.c (flush_read): Fixed behavior on short
3712 reads right after opening the new archive (multiv01.sh test).
3713 (new_volume): Special handling for "-".
3714 * src/list.c (print_header): Print trailing slash if
3715 current_trailing_slash was set (extrac03.sh,extrac04.sh tests).
3716 * tests/multiv01.sh: Minor changes.
3717 * m4/Makefile.am: Added missing files.
3718
3719 2003-07-05 Paul Eggert <eggert@twinsun.com>
3720
3721 Finish the checkin begin yesterday.
3722
3723 * NEWS: Document the user-visible changes installed in the last
3724 two days.
3725
3726 * TODO: New file (actually, resurrected; but with new contents).
3727
3728 * src/list.c (read_and): Give full type for procedure arg.
3729 (read_header): Strip trailing slashes, setting current_trailing_slash.
3730 (tartime): Avoid int overflow when printing year (!).
3731 (print_header): New arg specifying block ordinal. All uses changed.
3732 Print link as 'h' type. Give labels for long links and names.
3733
3734 * src/misc.c (contains_dot_dot): Moved to names.c
3735 (must_be_dot_or_slash): New function.
3736 (safer_rmdir): Use it.
3737 (remove_any_file): Now takes enum as option, not boolean.
3738 Check for (Linux) EISDIR as well as (POSIX) EPERM when attempting
3739 to unlink a directory.
3740 (deref_stat): Accept bool, not int.
3741
3742 * src/names.c (namelist_match): Allow partial matches only if
3743 recursive.
3744 (hash_string_hasher): Renamed from hash_avoided_name.
3745 (hash_string_compare): Renamed from compare_avoided_anames.
3746 (hash_string_insert, hash_string_lookup): New functions.
3747 (add_avoided_name, is_avoided_name): Use them.
3748 (safer_name_suffix): New function.
3749 (contains_dot_dot): Moved here from misc.c. Now returns bool, not int.
3750
3751 * src/rmt.c: Don't include print-copyr.h.
3752 (prepare_input_buffer): New arg FD.
3753 Do not read more than INT_MAX bytes at once,
3754 since it breaks on some brain damaged Tru64 hosts.
3755 Divide size by two
3756 when retrying instead of subtracting 1024; for speed.
3757 (main): Use gettext to translate (C), not print_copyright.
3758
3759 * src/system.h: Include <alloca.h> and <stdbool.h> unconditionally,
3760 now that gnulib handles this.
3761 Include <stddef.h> and <limits.h> unconditionally, now that we assume
3762 C89 or better.
3763 Assume that offsetof is defined in stddef.h.
3764 Do not include <sys/param.h>.
3765 (realloc, lseek): Do not declare.
3766 (HAVE_DECL_VALLOC): Renamed from HAVE_VALLOC.
3767 (CHAR_BIT, CHAR_MAX, UCHAR_MAX, LONG_MAX): Remove
3768 declarations, since we now assume C89 or better.
3769 (PARAMS): Remove, as we now assume C89. All uses changed.
3770 (bindtextdomain, textdomain): Include <gettext.h> to define.
3771 Include <unlocked-io.h>.
3772 (valloc): Define if not defined, and if valloc is not declared.
3773 (xstrdup): Remove decl.
3774
3775 * src/tar.c: Do not include <print-copyr.h>.
3776 Include <getdate.h>.
3777 (get_date): Remove decl.
3778 (ATIME_PRESERVE_OPTION, CHECKPOINT_OPTION, FORCE_LOCAL_OPTION,
3779 IGNORE_FAILED_READ_OPTION, INDEX_FILE_OPTION, NO_OVERWRITE_DIR_OPTION,
3780 NUMERIC_OWNER_OPTION, RECURSIVE_UNLINK_OPTION, REMOVE_FILES_OPTION,
3781 SHOW_OMITTED_DIRS_OPTION, TOTALS_OPTION): New constants.
3782 (long_options, decode_options): Use them.
3783 (OVERWRITE_DIR_OPTION): Remove.
3784 (long_options): New options --index-file, --no-overwrite-dir.
3785 Remove --overwrite-dir option.
3786 (usage): Use PACKAGE_BUGREPORT.
3787 (decode_options): Terminate new argv properly.
3788 Use PACKAGE_NAME, PACKAGE_VERSION.
3789 If verbose, report how we grokked any textual date option.
3790 (main): Add support for index-file.
3791
3792 * tests/Makefile.am: Convert to UTF-8.
3793 (AUTOMAKE_OPTIONS): Remove.
3794 (TESTS): Add delete04.sh, multiv01.sh, options.sh.
3795 (INCLUDES): Remove ../intl.
3796 (LDADD): Don't link libtar.a twice.
3797
3798 * tests/genfile.c: Convert to UTF-8.
3799 Don't include <print-copyr.h>.
3800 (DEFAULT_PATTERN): Renamed from DEFAULT.
3801 (ZEROS_PATTERN): Renamed from ZEROS.
3802 (main): Use gettext to translate (C), not print_copyright.
3803
3804 2003-07-04 Paul Eggert <eggert@twinsun.com>
3805
3806 Revamp to meet current standards of autoconf, automake,
3807 gettext, and gnulib, and incorporate new translations.
3808
3809 * config/config.guess, config/config.sub, config/depcomp,
3810 config/install-sh, config/mdate-sh, config/missing,
3811 config/mkinstalldirs, config/texinfo.texi:
3812 Moved here from parent directory, or from doc.
3813 * config.hin: Renamed from config.h.in.
3814 * config/config.rpath: New file.
3815
3816 * intl: Remove this subdirectory.
3817
3818 * lib/fnmatch_.h: Renamed from lib/fnmatch.hin.
3819
3820 * lib/getstr.c, lib/getstr.h, lib/msleep.c, lib/print-copyr.c,
3821 lib/print-copyr.h, lib/readutmp.c, lib/rename.c, lib/stpcpy.c,
3822 lib/strstr.c, lib/strtoimax.c, lib/strtoll.c, lib/strtoull.c,
3823 lib/strtoumax.c, lib/unicodeio.c, lib/unicodeio.h,
3824 lib/xstrtoimax.c, m4/c-bs-a.m4, m4/ccstdc.m4, m4/check-decl.m4,
3825 m4/decl.m4, m4/jm-mktime.m4, m4/prereq.m4, m4/xstrtoimax.m4,
3826 stamp-h.in: Remove.
3827
3828 * lib/alloca_.h, lib/fnmatch_loop.c, lib/gettext.h, lib/pathmax.h,
3829 lib/safe-write.c, lib/safe-write.h, lib/stdbool_.h, lib/strcase.h,
3830 lib/stripslash.c, lib/unlocked-io.h, lib/xgetcwd.h, m4/alloca.m4,
3831 m4/backupfile.m4, m4/bison.m4, m4/chown.m4, m4/dirname.m4,
3832 m4/dos.m4, m4/exclude.m4, m4/fileblocks.m4, m4/ftruncate.m4,
3833 m4/getdate.m4, m4/getopt.m4, m4/hash.m4, m4/human.m4,
3834 m4/intdiv0.m4, m4/intmax_t.m4, m4/inttypes-pri.m4,
3835 m4/inttypes_h.m4, m4/isc-posix.m4, m4/lchown.m4, m4/lib-ld.m4,
3836 m4/lib-link.m4, m4/lib-prefix.m4, m4/memset.m4, m4/mktime.m4,
3837 m4/modechange.m4, m4/nls.m4, m4/onceonly.m4, m4/pathmax.m4,
3838 m4/po.m4, m4/quote.m4, m4/quotearg.m4, m4/rmdir.m4,
3839 m4/safe-read.m4, m4/safe-write.m4, m4/save-cwd.m4, m4/savedir.m4,
3840 m4/ssize_t.m4, m4/stdbool.m4, m4/stdint_h.m4, m4/strcase.m4,
3841 m4/strtoimax.m4, m4/strtol.m4, m4/strtoll.m4, m4/strtoul.m4,
3842 m4/strtoull.m4, m4/strtoumax.m4, m4/tm_gmtoff.m4, m4/uintmax_t.m4,
3843 m4/unlocked-io.m4, m4/xalloc.m4, m4/xgetcwd.m4, m4/xstrtol.m4,
3844 po/LINGUAS, po/Makevars, po/Rules-quot, po/boldquot.sed,
3845 po/en@boldquot.header, po/en@quot.header, po/en_GB.po,
3846 po/insert-header.sin, po/remove-potcdate.sin, po/stamp-po: New files.
3847
3848 * ABOUT-NLS, INSTALL, lib/addext.c, lib/alloca.c, lib/argmatch.c,
3849 lib/argmatch.h, lib/backupfile.c, lib/backupfile.h, lib/dirname.c,
3850 lib/dirname.h, lib/error.c, lib/exclude.c, lib/exclude.h,
3851 lib/fnmatch.h, lib/full-write.c, lib/full-write.h, lib/getdate.h,
3852 lib/getdate.y, lib/getline.c, lib/getline.h, lib/getopt.c,
3853 lib/getopt.h, lib/getopt1.c, lib/hash.c, lib/hash.h, lib/human.c,
3854 lib/human.h, lib/lchown.c, lib/malloc.c, lib/mktime.c,
3855 lib/modechange.c, lib/modechange.h, lib/quote.c, lib/quote.h,
3856 lib/quotearg.c, lib/quotearg.h, lib/realloc.c, lib/safe-read.c,
3857 lib/safe-read.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
3858 lib/savedir.h, lib/strcasecmp.c, lib/utime.c, lib/xalloc.h,
3859 lib/xgetcwd.c, lib/xmalloc.c, lib/xstrdup.c, lib/xstrtol.c,
3860 lib/xstrtol.h, lib/xstrtoumax.c, m4/codeset.m4, m4/d-ino.m4,
3861 m4/error.m4, m4/fnmatch.m4, m4/getcwd.m4, m4/getline.m4, m4/gettext.m4,
3862 m4/glibc21.m4, m4/iconv.m4, m4/inttypes.m4, m4/lcmessage.m4,
3863 m4/longlong.m4, m4/malloc.m4, m4/mbrtowc.m4, m4/mbstate_t.m4,
3864 m4/progtest.m4, m4/realloc.m4, m4/strerror_r.m4, m4/ulonglong.m4,
3865 m4/utimbuf.m4, m4/utime.m4, m4/utimes.m4, m4/xstrtoumax.m4,
3866 po/Makefile.in.in:
3867 Upgrade to latest version from external source. The file "bootstrap"
3868 now grabs these automatically, so we needn't keep track of them
3869 in this change long any longer.
3870
3871 * Makefile.am (AUTOMAKE_OPTIONS): Remove. Now done by configure.ac.
3872 (SUBDIRS): Remove intl.
3873 * PORTS: Update for star, Macintosh.
3874 * README, README-alpha: Suggest Autoconf 2.57, Automake 1.7.5,
3875 Bison 1.875, gettext 0.12.1.
3876 * THANKS: Add Bernhard Rosenkraenzer, Solar Designer.
3877 * configure.ac (AC_INIT, AM_INIT_AUTOMAKE): Convert to modern form.
3878 (AC_CONFIG_AUX_DIR): New.
3879 (AC_CONFIG_HEADERS): Rename config.h.in to config.hin, to be more
3880 like coreutils.
3881 (AC_PREREQ): Bump from 2.52 to 2.57.
3882 (AC_GNU_SOURCE): New.
3883 (AC_PROG_GCC_TRADITIONAL, AM_C_PROTOTYPES, AC_C_CONST): Remove;
3884 we no longer support K&R C.
3885 (YACC): Remove.
3886 (AC_CHECK_HEADERS): Remove limits.h, poll.h, stdbool.h, stropts.h,
3887 sys/ioccom.h, sys/param.h, sys/time.h, sys/timeb.h, wchar.h, wctype.h.
3888 (AC_MBSTATE_T): Remove.
3889 (HAVE_UTIME_H, HAVE_DECL_FREE, HAVE_DECL_GETGRGID, HAVE_DECL_GETPWUID,
3890 HAVE_DECL_GETENV, HAVE_DECL_MALLOC, HAVE_DECL_STRTOUL,
3891 HAVE_DECL_STRTOULL, HAVE_MKNOD): Remove our special code.
3892 (AM_STDBOOL_H): Add.
3893 (AC_HEADER_TIME, AC_STRUCT_TIMEZONE,
3894 jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Remove.
3895 (AC_CHECK_TYPE): Remove ssize_t.
3896 (gt_TYPE_SSIZE_T): Add.
3897 (jm_AC_PREREQ_XSTRTOUMAX, jm_PREREQ_ADDEXT, jm_PREREQ_ERROR,
3898 jm_PREREQ_HUMAN, jm_PREREQ_QUOTEARG, jm_PREREQ_XGETCWD,
3899 AC_FUNC_ALLOCA, AC_FUNC_CLOSEDIR_VOID, AC_FUNC_STRERROR_R,
3900 AC_FUNC_FNMATCH, AC_FUNC_VPRINTF, AM_FUNC_GETLINE, jm_FUNC_MALLOC,
3901 jm_FUNC_MKTIME, jm_FUNC_REALLOC):
3902 Remove. Switch to gnulib macros like gl_BACKUPFILE instead.
3903 (tar_LDADD): Rename to LIB_CLOCK_GETTIME. All uses changed.
3904 (rmt_LDADD): Rename to LIB_SETSOCKOPT. All uses changed.
3905 (AC_CHECK_FUNCS): Remove fchdir, ftime, getcwd, isascii, nap,
3906 napms, poll, select, strstr, usleep.
3907 (AC_REPLACE_FUNCS): Remove ftruncate, lchown, memset, rename,
3908 rmdir, strcasecmp, strncasecmp, strtol, strtoul.
3909 (AM_GNU_GETTEXT): Use external and need-ngettext options.
3910 (AM_GNU_GETTEXT_VERSION): New.
3911 (AC_OUTPUT): Remove intl/Makefile.
3912
3913 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
3914 ($(srcdir)/tar.info, tar.dvi): Remove obsolete warnings.
3915 * doc/fdl.texi: Update to current GNU version.
3916 * doc/gettext.texi: Update to current coreutils version,
3917 plus a copyright notice.
3918 * doc/tar.texi: Switch to new method for doing copyright notices.
3919 Use @acronym instead of @sc where appropriate.
3920 Remove empty examples. Give a few more examples.
3921
3922 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
3923 (EXTRA_DIST, libtar_a_SOURCES): Switch to gnulib, so that they
3924 are built up in pieces with +=.
3925 (noinst_HEADERS, INCLUDES): Remove.
3926 (BUILT_SOURCES, MAINTAINERCLEANFILES, MOSTLYCLEANFILES): New.
3927 (libtar_a_LIBADD): Use $ rather than @.
3928 (all-local, alloca.h, fnmatch.h, stdbool.h): New rules, from gnulib.
3929
3930 * m4/Makefile.am (EXTRA_DIST): Add alloca.m4, backupfile.m4,
3931 bison.m4, chown.m4, dirname.m4, dos.m4, exclude.m4, fileblocks.m4,
3932 ftruncate.m4, getdate.m4, getopt.m4, hash.m4, human.m4,
3933 intdiv0.m4, intmax_t.m4, inttypes_h.m4, inttypes-pri.m4,
3934 isc-posix.m4, lcown.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
3935 memset.m4, mktime.m4, modechange.m4, nls.m4, onceonly.m4,
3936 pathmax.m4, po.m4, quotearg.m4, quote.m4, rmdir.m4, safe-read.m4,
3937 safe-write.m4, save-cwd.m4, savedir.m4, ssize_t.m4, stdbool.m4,
3938 stdint_h.m4, strcase.m4, strtoimax.m4, strtoll.m4, strtol.m4,
3939 strtoull.m4, strtoul.m4, strtoumax.m4, tm_gmtoff.m4, uintmax_t.m4,
3940 unlocked-io.m4, xalloc.m4, xgetcwd.m4, xstrtol.m4.
3941 Remove c-bs-a.m4, ccstdc.m4, check-decl.m4, decl.m4, jm-mktime.m4,
3942 prereq.m4, xstrtoimax.m4.
3943
3944 * po/POTFILES.in: Remove tests/genfile.c; it doesn't need to
3945 be translated, since it's not a user-visible tool.
3946
3947 * scripts/Makefile.am (AUTOMAKE_OPTIONS): Remove.
3948
3949 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
3950 (INCLUDES): Remove ../intl. Put top-srcdir before ., for
3951 consistency with coreutils.
3952 (LDADD): Link LIBINTL after libtar.a, since
3953 it's now external and should stand by itself.
3954
3955 * src/buffer.c (print_total_written): Adjust to new human.h
3956 interface.
3957 (child_open_for_compress): Do not increase size to BLOCKSIZE.
3958 (open_archive): Open index file name.
3959 Strip trailing slahes from file names.
3960 (flush_write): Set size to 0 if not saving names.
3961 (flush_write, flush_read): Use safer_name_suffix rather than
3962 inline code.
3963
3964 * src/common.h: Include <quote.h>.
3965 (absolute_names_option, atime_preserve_option, backup_option,
3966 block_number_option, checkpoint_option, dereference_option,
3967 force_local_option, ignore_failed_read_option, ignore_zeros_option,
3968 incremental_option, interactive_option, multi_volume_option,
3969 numeric_owner_option, one_file_system_option, recursive_unlink_option,
3970 read_full_records_option, remove_files_option, same_order_option,
3971 show_omitted_dirs_option, sparse_option, starting_file_option,
3972 to_stdout_option, totals_option, touch_option, verify_option,
3973 dev_null_output, now_verifying, we_are_root): Now bool, not int.
3974 (current_trailing_slash, index_file_name, recent_long_name_blocks,
3975 recent_long_link_blocks): New vars.
3976 (NO_OVERWRITE_DIR_OLD_FILES): New constant.
3977 (OVERWRITE_OLD_DIRS): Remove.
3978 (enum remove_option): New enum.
3979 (remove_any_file): Use it as option arg, not int.
3980 (is_avoided_name, contains_dot_dot): Return bool, not int.
3981 (safer_name_suffix): New decl.
3982
3983 * src/compare.c (now_verifying): Now bool, not int.
3984 (fill_in_sparse_array): Move to extract.c. Now returns bool;
3985 all callers changed to test for failure.
3986 (diff_sparse_files): Take size from current_stat, not from param.
3987 (diff_archive): Do not count trailing slashes in archives.
3988 (verify_volume): Test for header failure after loop, not before.
3989
3990 * src/create.c (relativize): Remove; replaced by safer_name_suffix.
3991 All callers changed.
3992 (start_header): Clear devmajor and devminor fields, too.
3993 (finish_header): New arg block_ordinal.
3994 (init_sparsearray): Now extern. Set sp_array_size to
3995 SPARSES_IN_OLDGNU_HEADER if it is zero.
3996 (dump_file): Keep link table as a hash.
3997 Do not count "file changed as we read it" as a failure.
3998
3999 * src/delete.c (recent_long_name_blocks, recent_long_link_blocks):
4000 Move extern decl to common.h.
4001
4002 * src/extract.c (we_are_root): Now bool, not int.
4003 (check_time): Warn about implausibly old time stamps.
4004 (set_stat): Use utimbuf, not stat_info.
4005 (prepare_to_extract): New arg DIRECTORY.
4006 (fill_in_sparse_array): Moved here from compare.c.
4007 (extract_sparse_file): Now returns off_t, giving size left.
4008 Truncate file at end.
4009 (extract_archive): Use safer_name_suffix rather than rolling our own.
4010 Use fill_in_sparse_array rather than rolling our own.
4011 Strip trailing slashes more effectively.
4012 Check for unsafe names.
4013
4014 * src/incremen.c (struct directory): nfs and found are now of type
4015 bool, not int.
4016 (gnu_restore): Now takes directory name as argument, not offset
4017 of directory name in a global. All uses changed.
4018 (CURRENT_FILE_NAME): Remove.
4019
4020 New tests.
4021 * tests/delete04.sh, tests/multiv01.sh, tests/options.sh: New
4022 files.
4023
4024 2002-09-30 Paul Eggert <eggert@twinsun.com>
4025
4026 * src/rmt.c (prepare_input_buffer): Renamed form
4027 prepare_record_buffer. All uses changed. Do not assume that
4028 size_t is the same width as int.
4029
4030 2002-03-29 Paul Eggert <eggert@twinsun.com>
4031
4032 * src/incremen.c (get_directory_contents):
4033 If ignore_failed_read_option, only warn about
4034 get_directory_contents failures. Fix suggested by
4035 Mark Costlow.
4036
4037 2002-01-31 Mark W. Eichin <eichin@thok.org>
4038
4039 * src/buffer.c (child_open_for_compress): Don't try to read
4040 past the end of the buffer.
4041
4042 2001-10-11 Jim Meyering <meyering@lucent.com>
4043
4044 * argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
4045 and quote_n (1, ... to avoid clobbering a buffer.
4046
4047 2001-09-26 Paul Eggert <eggert@twinsun.com>
4048
4049 * NEWS, configure.ac (AM_INIT_AUTOMAKE): Version 1.13.25.
4050
4051 * src/buffer.c (flush_read): Don't diagnose partial blocks before
4052 end of file; just ignore them silently.
4053
4054 * src/list.c (read_header): Don't keep around extended name
4055 and link info indefinitely; keep it only for the next file.
4056 This fixes a bug introduced in 1.13.24, and removes the need
4057 for some static variables. Set recent_long_name and
4058 recent_long_link to zero if there were no long links; this
4059 avoids a violation of ANSI C rules for pointers in delete.c.
4060 * THANKS: Add Christian Laubscher.
4061
4062 2001-09-26 Jim Meyering <meyering@lucent.com>
4063
4064 * doc/tar.texi (Remote Tape Server): is know -> is known
4065
4066 2001-09-25 Paul Eggert <eggert@twinsun.com>
4067
4068 * lib/unicodeio.c (EILSEQ): Include <iconv.h> first, since
4069 <iconv.h> may define EILSEQ (e.g. libiconv). Define a
4070 replacement EILSEQ to be ENOENT, not EINVAL, since callers may
4071 want to distinguish EINVAL and EILSEQ.
4072
4073 2001-09-24 Christophe Kalt <Christophe.Kalt@kbcfp.com>
4074
4075 * src/extract.c (maybe_recoverable):
4076 Treat OVERWRITE_OLD_DIRS like DEFAULT_OLD_FILES.
4077
4078 2001-09-22 Paul Eggert <eggert@twinsun.com>
4079
4080 * NEWS, configure.ac (AM_INIT_AUTOMAKE): Version 1.13.24.
4081
4082 * ABOUT-NLS, intl/*: Update to gettext-0.10.40, replacing LGPL
4083 with GPL.
4084
4085 * INSTALL, mkinstalldirs: Update to autoconf 2.52 version.
4086 * PORTS: Add copyright notice, 'star' reference.
4087 * README-alpha: Add copyright notice, autoconf 2.52 patch.
4088 * THANKS: Add Christophe Kalt.
4089 * config.sub: Upgrade to 2001-09-14 version.
4090
4091 * configure.ac (ALL_LINGUAS): Add ko.
4092 * po/ko.po: Resurrected file.
4093
4094 * doc/convtexi.pl: Add coding advice for Emacs.
4095
4096 * doc/getdate.texi: Add copyright notice.
4097
4098 * doc/mdate-sh: Upgrade to automake 1.5 version.
4099
4100 * doc/tar.texi (extracting files): Mention --to-stdout.
4101 (Option Summary, Dealing with Old Files): New option --overwrite-dir.
4102 (Overwrite Old Files): Likewise.
4103
4104 * lib/Makefile.am (noinst_HEADERS):
4105 Remove copysym.h. Add print-copyr.h, unicodeio.h.
4106 (libtar_a_SOURCES): Remove copysym.c, Add print-copyr.c, unicodeio.c.
4107
4108 * lib/copysym.c, lib/copysym.h: Remove.
4109 * lib/print-copyr.c, lib/print-copyr.h, lib/unicodeio.c,
4110 lib/unicodeio.h: New files.
4111
4112 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
4113 lib/mktime.c, lib/strtoll.c: Switch from LGPL to GPL.
4114
4115 * lib/quotearg.c (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
4116 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
4117
4118 * m4/Makefile.am (EXTRA_DIST): Remove isc-posix.m4.
4119 * m4/isc-posix.m4: Remove.
4120
4121 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit.
4122
4123 * po/POTFILES.in: Add copyright notice.
4124
4125 * src/Makefile.am (LDADD): Like libtar.a before @INTLLIBS@ as
4126 well as after.
4127 * tests/Makefile.am (LDADD): Likewise.
4128
4129 * src/buffer.c (write_archive_buffer, close_archive):
4130 If an archive is a socket, treat it like a FIFO.
4131 (records_read, records_written): New vars.
4132 (write_archive_to_stdout): Now bool, not int.
4133 (open_archive, flush_write, flush_read): Keep records_read and
4134 records_written up to date.
4135
4136 * src/common.h (enum old_files): New value OVERWRITE_OLD_DIRS.
4137 (write_archive_to_stdout): Now bool, not int.
4138 (enum read_header): New value HEADER_SUCCESS_EXTENDED.
4139 (read_header): Now takes bool arg. Existing callers modified
4140 to pass 0, unless otherwise specified.
4141
4142 * src/delete.c (records_read): Remove; now a global.
4143 (acting_as_filter): Now bool, not int.
4144 (recent_long_name, recent_long_link, recent_long_name_blocks,
4145 recent_long_link_blocks, records_read, records_written): New decls.
4146 (records_skipped): New var.
4147 (move_archive): Don't divide by zero if arg is 0.
4148 Use the above vars to compute how far to move.
4149 (write_recent_blocks): New function.
4150 (delete_archive_member): Pass 1 to read_header, so that it doesn't
4151 read more than 1 block. Handle resulting HEADER_SUCCESS_EXTENDED code.
4152 Keep track of how many records have been skipped.
4153 Let the buffer code count records.
4154 When copying a header, copy any extended headers that came before it.
4155
4156 * src/extract.c (extract_archive): When marking a directory to be
4157 updated after symlinks, stat all directories after it in the
4158 delayed-set-stat list too, since they will be checked after
4159 symlinks. Add support for --overwrite-dir.
4160
4161 * src/list.c (recent_long_name, recent_long_link,
4162 recent_long_name_blocks, recent_long_link_blocks): New vars.
4163 (read_and): Pass 0 to read_header.
4164 (read_header): New arg RAW_EXTENDED_HEADERS. Store away extended
4165 headers into new vars. Null-terminate incoming symbolic links.
4166
4167 * src/rmt.c: Include print-copyr.h, not copysym.h.
4168 (main): Use print_copyright, not copyright_symbol.
4169 * src/tar.c (decode_options): Likewise.
4170 (OVERWRITE_DIR_OPTION): New constant.
4171 (long_options, usage, decode_options): Add --overwrite-dir.
4172
4173 * src/tar.h: Put copyright notice into documentation.
4174
4175 * tests/Makefile.am (TESTS): Add delete03.sh.
4176 * tests/delete03.sh: New file.
4177
4178 * tests/genfile.c: Include print-copyr.h, not copysym.h.
4179 (main): Use print_copyright, not copyright_symbol.
4180 Include <argmatch.h>.
4181 (pattern_strings): Remove.
4182 (pattern_args, pattern_types): New constants.
4183 (main): Use XARGMATCH, not argmatch.
4184
4185 2001-09-20 Jim Meyering <meyering@lucent.com>
4186
4187 * lib/xstrtol.c (strtoimax): Guard declaration with
4188 `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
4189 The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
4190 have their own, conflicting declaration of strtoimax in sys/inttypes.h.
4191 (strtoumax): Likewise, for completeness (it wasn't necessary).
4192 * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
4193 Check for declaration of strtoimax.
4194 * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
4195 Check for declaration of strtoumax.
4196
4197 2001-09-16 Paul Eggert <eggert@twinsun.com>
4198
4199 * fnmatch.m4 (jm_FUNC_FNMATCH): Fix typo in previous patch: yes -> no.
4200
4201 2001-09-14 Paul Eggert <eggert@twinsun.com>
4202
4203 * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.23.
4204
4205 * README-alpha: Describe automake patch.
4206
4207 * configure.ac (LIBOBJS):
4208 Remove automake 1.4 workaround, as we're using 1.5 now.
4209 (USE_INCLUDED_LIBINTL): New AC_DEFINE.
4210
4211 * lib/copysym.c: Include stddef.h, for size_t.
4212 Include langinfo.h if needed.
4213 Use locale_charset only if USE_INCLUDED_LIBINTL;
4214 if not, use nl_langinfo (CODESET) if available.
4215
4216 2001-09-13 Paul Eggert <eggert@twinsun.com>
4217
4218 * config.guess, config.sub: Sync with canonical versions.
4219
4220 * configure.ac (jm_PREREQ_XGETCWD): Add.
4221
4222 * lib/Makefile.am (noinst_HEADERS): Add copysym.h.
4223 (libtar_a_SOURCES): Add copysym.c.
4224 * copysym.c, copysym.h: New files.
4225
4226 * lib/error.c: Sync with fileutils version.
4227
4228 * m4/Makefile.am (EXTRA_DIST): Add getcwd.m4; remove uintmax_t.m4.
4229 * m4/getcwd.m4: New file.
4230 * m4/uintmax_t.m4: Remove.
4231
4232 * m4/gettext.m4 (AM_WITH_NLS):
4233 Fix bug with calculating version of Bison 1.29.
4234 Reported by Karl Berry.
4235
4236 * src/Makefile.am (datadir): Remove.
4237
4238 * src/rmt.c: Include copysym.h.
4239 (main): Use copyright_symbol to translate copyright notice,
4240 instead of gettext.
4241 * src/tar.c: Likewise.
4242 * tests/genfile.c: Likewise.
4243
4244 * src/system.h (MB_LEN_MAX): New symbol.
4245
4246 2001-09-11 Paul Eggert <eggert@twinsun.com>
4247
4248 * src/extract.c (struct delayed_set_stat): New member
4249 'after_symlinks'.
4250 (delay_set_stat): Initialize it to 0.
4251 (set_mode): New arg current_stat_info. Use it (if nonnull) to avoid
4252 taking an extra stat ourselves. All callers changed.
4253 (set_stat): Likewise.
4254 (apply_nonancestor_delayed_set_stat): New arg 'after_symlinks'.
4255 If false, stop when encountering a struct whose 'after_symlinks'
4256 member is true. Otherwise, go through all structures but check
4257 them more carefully. All callers changed.
4258 (extract_archive): When extracting a deferred symlink, if its parent
4259 directory's status needs fixing, then mark the directory as needing
4260 to be fixed after symlinks.
4261 (extract_finish): Fix status of ordinary directories, then apply
4262 delayed symlinks, then fix the status of directories that are
4263 ancestors of delayed symlinks.
4264
4265 * src/rtapelib.c (rexec):
4266 Remove declaration; it ran afoul of prototypes on Crays.
4267 Reported by Wendy Palm of Cray.
4268
4269 2001-09-06 Paul Eggert <eggert@twinsun.com>
4270
4271 * lib/strtoimax.c (HAVE_LONG_LONG):
4272 Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
4273 (strtoimax): Use sizeof (long), not
4274 sizeof strtol (ptr, endptr, base),
4275 to work around bug in IBM C compiler.
4276
4277 2001-09-04 Paul Eggert <eggert@twinsun.com>
4278
4279 * lib/xgetcwd.c: Include "xalloc.h".
4280 (xgetcwd): Do not return NULL when memory is exhausted; instead,
4281 report an error and exit.
4282
4283 * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
4284 (jm_PREREQ): Use it.
4285
4286 2001-09-03 Paul Eggert <eggert@twinsun.com>
4287
4288 * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
4289 (jm_PREREQ_XGETCWD): New macro.
4290
4291 * lib/exclude.c (fnmatch_no_wildcards):
4292 Fix typo that caused us to do case-folding
4293 search even when that was not desired. This occurred only in the
4294 no-wildcard case.
4295
4296 * lib/xgetcwd.c: Include pathmax.h if not HAVE_GETCWD.
4297 Do not include xalloc.h.
4298 (INITIAL_BUFFER_SIZE): New symbol.
4299 Do not use xmalloc / xrealloc, since the caller is responsible for
4300 handling errors. Preserve errno around `free' during failure.
4301 Do not overrun buffer when using getwd.
4302
4303 * lib/xgetcwd.c (xgetcwd):
4304 Use HAVE_GETCWD_NULL, not defined __GLIBC__ && __GLIBC__ >= 2,
4305 to decide whether to use getcwd (NULL, 0).
4306
4307 2001-09-02 Paul Eggert <eggert@twinsun.com>
4308
4309 * lib/xgetcwd.c: Fix typo in local var; from Jim Meyering.
4310
4311 2001-09-01 Jim Meyering <meyering@lucent.com>
4312
4313 * exclude.c: Use `""', not `<>' to #include non-system header files.
4314 (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
4315 and strncasecmp as r-values. Unixware didn't have declarations.
4316
4317 2001-08-31 Jim Meyering <meyering@lucent.com>
4318
4319 * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
4320 Use an initial, malloc'd, buffer of length 128 rather than
4321 a statically allocated one of length 1024.
4322
4323 2001-08-30 Paul Eggert <eggert@twinsun.com>
4324
4325 * lib/utime.c: Include full-write.h.
4326 * lib/xstrtol.c (strtoimax): New decl.
4327
4328 2001-08-29 Paul Eggert <eggert@twinsun.com>
4329
4330 * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.22.
4331
4332 * src/create.c (dump_file): Relativize link names before dumping.
4333 This fixes a bug reported by Jose Pedro Oliveira.
4334
4335 * src/create.c (dump_file): Use offsetof when computing sizes for
4336 struct hack; this avoids wasted space in some cases.
4337 * src/incremen.c (note_directory, find_directory): Likewise.
4338 * src/names.c (name_gather, addname): Likewise.
4339
4340 * src/extract.c (extract_archive): Use strcpy, not memcpy,
4341 for consistency with other code that does similar things.
4342 * src/names.c (name_gather): Likewise.
4343
4344 * src/names.c (read_name_from_file, name_next, name_gather,
4345 add_hierarchy_to_namelist): Avoid quadratic behavior when
4346 reallocating buffers. Check for buffer size overflow.
4347 (addname): Avoid unnecessary clearing of memory.
4348
4349 2001-08-29 "Jan D." <Jan.Djarv@mbox200.swipnet.se>
4350
4351 * src/extract.c (delay_set_stat): Fix off-by-one error in file
4352 name size allocation that caused core dumps.
4353
4354 2001-08-28 Paul Eggert <eggert@twinsun.com>
4355
4356 * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.21.
4357
4358 * configure.ac (GNU_SOURCE): Define to 1, not /**/.
4359 (major_t, minor_t, ssize_t): Use new-style AC_CHECK_TYPE.
4360 (daddr_t): Remove; no longer used.
4361 (jm_PREREQ_HUMAN): Add.
4362
4363 * acconfig.h: Remove; no longer needed.
4364
4365 * config.guess, config.sub:
4366 New files, from automake 1.5. Gettext 0.10.39 needs them.
4367 * depcomp, missing, mkinstalldirs: Upgrade to automake 1.5.
4368
4369 * Makefile.am (AUTOMAKE_OPTIONS): Add dist-bzip2.
4370 (SUBDIRS): Put intl before lib, as gettext requires.
4371
4372 * ABOUT-NLS: Upgrade to gettext 0.10.39.
4373 * intl: Upgrade entire directory to gettext 0.10.39.
4374 * m4/codeset.m4, m4/glibc21.m4, m4/iconv.m4:
4375 New files, from gettext 0.10.39.
4376 * m4/gettext.m4, m4/isc-posix.m4, m4/lcmessage.m4, m4/progtest.m4,
4377 Upgrade to gettext 0.10.39,
4378 * po/Makefile.in.in: Likewise, except fix a typo in its copying
4379 permissions.
4380 * po/cat-id-tbl.c, po/stamp-cat-id:
4381 Remove; no longer used by gettext 0.10.39.
4382 * po/ChangeLog: New file.
4383
4384 * doc/Makefile.am (EXTRA_DIST): Add freemanuals.texi.
4385 $(srcdir)/tar.texi: Likewise.
4386 * doc/freemanuals.texi: New file.
4387 * doc/tar.texi (Free Software Needs Free Documentation): New appendix.
4388 `fileds' -> `fields'
4389 * doc/texinfo.tex: Upgrade to version 2001-07-25.07.
4390
4391 * lib/Makefile.am (EXTRA_DIST): Add strtoll.c, strtoimax.c.
4392 (noinst_HEADERS): Add quote.h.
4393 (libtar_a_SOURCES): Add quote.c, xstrtoimax.c.
4394
4395 * lib/exclude.c: Fix typo in '#include <stdint.h>' directive.
4396
4397 * lib/full-write.c, lib/savedir.c: Comment fix.
4398
4399 * lib/pathmax.h: Remove.
4400
4401 * lib/quote.c, lib/quote.h: New files.
4402
4403 * lib/xgetcwd.c: Don't include pathmax.h.
4404 Include stdlib.h and unistd.h if available.
4405 Include xalloc.h.
4406 (xmalloc, xstrdup, free): Remove decls.
4407 (xgetcwd): Don't assume sizes fit in unsigned.
4408 Check for overflow when computing sizes.
4409 Simplify reallocation code.
4410
4411 * lib/xmalloc.c: Quote failure tests.
4412
4413 * lib/strtoumax.c, lib/xstrtoimax.c: New files.
4414
4415 * lib/strtoimax.c: Renamed from strtouxmax.c. Make it more
4416 similar to strtol.c.
4417 (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.
4418 (verify): New macro.
4419 (strtoumax, uintmax_t, strtoull, strtol): Remove.
4420 (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
4421 (strtoimax): Renamed from strtoumax. All uses of unsigned values
4422 changed to signed values. Check sizes at compile-time, not
4423 run-time. Prefer strtol to strtoll if both work.
4424 (main): Remove.
4425
4426 * lib/xstrtol.h (xstrtoimax): New decl.
4427
4428 * m4/Makefile.am (EXTRA_DIST):
4429 Add codeset.m4, glibc21.m4, iconv.m4, inttypes.m4,
4430 longlong.m4, xstrtoimax.m4.
4431
4432 * m4/inttypes.m4 (jm_AC_HEADER_INTTYPES_H):
4433 Remove; now done by autoconf.
4434 (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T): Replace with
4435 Use AC_CHECK_TYPE instead of merely looking for the header.
4436
4437 * m4/uintmax_t.m4: Use shorter comment.
4438
4439 * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
4440 Quote first arg of AC_DEFUN.
4441 Require jm_AC_TYPE_INTMAX_T and jm_AC_TYPE_LONG_LONG since they
4442 is needed to parse the include file.
4443 Simplify logic behind the args to AC_REPLACE.
4444
4445 * src/Makefile.am (OMIT_DEPENDENCIES): Remove.
4446
4447 * src/ansi2knr.1, src/ansi2knr.c: Remove; wasn't being used.
4448
4449 * src/rmt.c (main):
4450 Use "Copyright %d" to simplify the translator's job in the future.
4451 Advise translator about circle-C.
4452 * src/tar.c: (decode_options): Likewise.
4453 * tests/genfile.c (main): Likewise.
4454
4455 2001-08-28 Jim Meyering <meyering@lucent.com>
4456
4457 * lib/argmatch.c: Include "quote.h".
4458 (argmatch_invalid): Quote the context.
4459
4460 * lib/dirname.c (dir_name): Fix typo on PC platforms.
4461
4462 * lib/backupfile.c, lib/basename.c, lib/dirname.c, lib/strtoul.c:
4463 Use single-quote for local .h files.
4464
4465 * lib/error.h (__attribute__): Don't depend on __STRICT_ANSI__.
4466
4467 * lib/getopt.c, lib/getopt.h, lib/getopt1.c: Upgrade to recent
4468 glibc versions.
4469
4470 * lib/getdate.y (get_date): Initialize tm_isdst to -1 before
4471 invoking mktime the last time.
4472
4473 * lib/pathmax.h: Use #if rather than #ifdef for HAVE_UNISTD_H.
4474
4475 * lib/rename.c: Major rewrite by Volker Borchert to use system
4476 rename function, but to work around problems with trailing
4477 slashes.
4478
4479 * lib/strtoll.c: New file, from glibc.
4480 * lib/strtoul.c: Update from glibc.
4481
4482 * lib/strtouxmax.c: Renamed from lib/strtoumax.c.
4483 Add support for signed numbers, too.
4484 (strtoul, strtoull): Do not declare if STRTOUXMAX_UNSIGNED
4485 is not defined.
4486 (strtol, strtoll): Declare as needed, if STRTOUXMAX_UNSIGNED is
4487 not defined.
4488 (strtoumax, uintmax_t, strtoull, strtoul): New macros.
4489 (main): Use generic names in debugging output.
4490 * lib/strtoimax.c: Plus add the following changes of my own:
4491 (main): Use accurate names in debugging output.
4492
4493 * lib/xgetcwd.c (xgetcwd): Use getcwd if glibc 2 or later.
4494 Don't use PATH_MAX.
4495
4496 * m4/c-bs-a.m4, m4/check-decl.m4, m4/d-ino.m4, m4/error.m4,
4497 m4/getline.m4, m4/jm-mktime.m4, m4/malloc.m4, m4/mbrtowc.m4,
4498 m4/mbstate_t.m4, m4/realloc.m4, m4/uintmax_t.m4, m4/utimbuf.m4,
4499 m4/utime.m4, m4/utimes.m4:
4500 Quote the first argument in each use of AC_DEFUN.
4501
4502 * m4/getline.m4: Don't use string.h.
4503
4504 * m4/inttypes.m4, m4/longlong.m4, m4/xstrtoimax.m4: New files.
4505
4506 * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): @%:@ -> #.
4507
4508 2001-08-27 Paul Eggert <eggert@twinsun.com>
4509
4510 * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.20.
4511
4512 The biggest change is the new --exclude semantics and options.
4513 The basic idea was suggested by Gerhard Poul; thanks!
4514
4515 * NEWS: Describe new --exclude semantics and options, and bug fixes.
4516 * README: ignfail.sh fails on some NFS hosts.
4517 * NEWS, README, lib/xstrtol.h: Add copyright notice.
4518
4519 * Makefile.am (ACLOCAL_AMFLAGS): Add -I m4.
4520 (M4DIR, ACINCLUDE_INPUTS, $(srcdir)/acinclude.m4):
4521 Remove; the automake bug has been fixed.
4522 * acinclude.m4: Remove.
4523
4524 * configure.ac: Renamed from configure.in.
4525 (AC_PREREQ): Bump from 2.13 to 2.52.
4526 (ALL_LINGUAS): Add id, tr. Remove ko, as po/ko.po (dated
4527 1997-05-30) has an encoding error.
4528 (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf.
4529 (AC_FUNC_FNMATCH): Use AC_CONFIG_LINKS, not AC_LINK_FILES.
4530
4531 * doc/fdl.texi: Update to current GNU version.
4532
4533 * doc/tar.texi: Put leading '*' in direntry.
4534 Accommodate new gfdl sectioning.
4535 New option --recursion (the default) that is the inverse of
4536 --no-recursion.
4537
4538 New options --anchored, --ignore-case, --wildcards,
4539 --wildcards-match-slash, and their negations (e.g., --no-anchored).
4540 Along with --recursion and --no-recursion, these control how exclude
4541 patterns are interpreted. The default interpretation of exclude
4542 patterns is now --no-anchored --no-ignore-case --recursion
4543 --wildcards --wildcards-match-slash.
4544
4545 * lib/Makefile.am (OMIT_DEPENDENCIES): Remove.
4546
4547 * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
4548 (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
4549 (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
4550 Include if available.
4551 (<xalloc.h>): Include
4552 (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
4553 (verify): New macro. Use it to verify that EXCLUDE macros do not
4554 collide with FNM macros.
4555 (struct patopts): New struct.
4556 (struct exclude): Use it, as exclude patterns now come with options.
4557 (new_exclude): Support above changes.
4558 (new_exclude, add_exclude_file):
4559 Initial size must now be a power of two to simplify overflow checking.
4560 (free_exclude, fnmatch_no_wildcards): New function.
4561 (excluded_filename): No longer requires options arg, as the options
4562 are determined by add_exclude. Now returns bool, not int.
4563 (excluded_filename, add_exclude):
4564 Add support for the fancy new exclusion options.
4565 (add_exclude, add_exclude_file): Now takes int options arg.
4566 Check for arithmetic overflow when computing sizes.
4567 (add_exclude_file): xrealloc might modify errno, so don't
4568 realloc until after errno might be used.
4569
4570 * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
4571 New macros.
4572 (free_exclude): New decl.
4573 (add_exclude, add_exclude_file): Now takes int options arg.
4574 (excluded_filename): No longer requires options arg, as the options
4575 are determined by add_exclude. Now returns bool, not int.
4576
4577 * lib/prepargs.c: Include <string.h>; required for C99 since
4578 we use strlen.
4579
4580 * lib/quotearg.c:
4581 BSD/OS 4.1 wchar.h requires FILE and struct tm to be declared.
4582
4583 * lib/xstrtol.h (_DECLARE_XSTRTOL): Improve quality of
4584 diagnostic for LONGINT_INVALID_SUFFIX_CHAR.
4585
4586 * m4/Makefile.am (EXTRA_DIST): Add check-decl.m4, mbrtowc.m4.
4587 Remove inttypes_h.m4, largefile.m4, mktime.m4.
4588
4589 * m4/inttypes_h.m4, m4/largefile.m4, m4/mktime.m4: Remove;
4590 subsumed by Autoconf 2.50.
4591
4592 * m4/error.m4: Upgrade to serial 2.
4593
4594 * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Upgrade to serial 4, but
4595 remove test for GNU C library. It's not correct, as some
4596 older glibcs are buggy.
4597
4598 * m4/getline.m4, m4/malloc.m4: Upgrade to serial 4.
4599
4600 * m4/prereq.m4: Upgrade to serial 20, but then:
4601 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
4602 (jm_PREREQ_EXCLUDE): New macro.
4603 (jm_PREREQ_HUMAN): Remove jm_AC_HEADER_INTTYPES_H, as it is subsumed
4604 by autoconf 2.5x.
4605
4606 * m4/realloc.m4: Upgrade to serial 4.
4607
4608 * m4/strerror_r.m4: Revert to serial 1002.
4609
4610 * m4/uintmax_t.m4: Upgrade to autoconf 2.5x.
4611
4612 * m4/utimes.m4: Upgrade to latest version (still "serial 3").
4613
4614 * m4/xstrtoumax.m4: Upgrade to serial 3, but then:
4615 (jm_AC_PREREQ_XSTRTOUMAX): Remove jm_AC_HEADER_INTTYPES_H, as
4616 it is now subsumed by autoconf. Add inttypes.h.
4617
4618 * po/cs.po, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
4619 po/it.po, po/pl.po, po/sl.po, po/sv.po: Sync with translation project.
4620
4621 * src/buffer.c (new_volume): Stop if the script exits with an error.
4622
4623 * src/common.h (excluded_with_slash, excluded_without_slash):
4624 Remove, replacing by:
4625 (excluded): New decl.
4626 (link_error): New decl.
4627 (excluded_name): Now returns bool.
4628
4629 * src/extract.c:
4630 (struct delayed_symlinks, extract_archive, apply_delayed_symlinks):
4631 Support hard links to symbolic links.
4632
4633 (struct delayed_symlink): Remove 'names' member, replacing it with
4634 'sources' and 'target' member. All uses changed.
4635
4636 (struct string_list): New type.
4637
4638 (delayed_set_stat, extract_archive): Use offsetof when computing sizes
4639 for struct hack; this avoids wasted space in some cases.
4640
4641 (extract_archive): Fix test for absolute pathnames and/or "..".
4642 Use link_error to report errors for links.
4643 Remove redundant trailing '/' at "really_dir", for all uses, not
4644 just before invoking mkdir.
4645 If overwriting old files, do not worry so much about existing
4646 directories.
4647 Fix mode computation in the case where the directory exists.
4648
4649 (apply_delayed_symlinks): If we can't make a hard link to a symbolic
4650 link, make a copy of the symbolic link.
4651
4652 * src/incremen.c (get_directory_contents):
4653 If ignore_failed_read_option, only warn about
4654 stat failures.
4655
4656 * src/list.c (from_header): Do not issue a diagnostic if TYPE is zero.
4657 However, check for error even for '-' or '+' case.
4658
4659 (print_header): Try parsing uids and gids as unsigned integers first,
4660 and as a uid_t or gid_t only if that fails. This adds support for
4661 listing positive uids and gids that are greater than UID_MAX and
4662 GID_MAX.
4663
4664 * src/misc.c (link_error): New function.
4665
4666 * src/names.c (collect_and_sort_names):
4667 If ignore_failed_read_option, only warn about
4668 stat errors.
4669
4670 (excluded_name): Now returns bool. Simplify, as the fancy
4671 features are now all in excluded_filename.
4672
4673 * src/rtapelib.c (base_name): Remove decl, as system.h now
4674 declares it.
4675
4676 * src/system.h: Include stddef.h if available.
4677 (offsetof): Declare if stddef.h doesn't.
4678
4679 Include <dirname.h>.
4680 (FILESYSTEM_PREFIX_LEN, ISSLASH): Remove; now defined by dirname.h.
4681
4682 * src/tar.c (ANCHORED_OPTION, IGNORE_CASE_OPTION,
4683 NO_ANCHORED_OPTION, NO_IGNORE_CASE_OPTION, NO_WILDCARDS_OPTION,
4684 NO_WILDCARDS_MATCH_SLASH_OPTION, WILDCARDS_OPTION,
4685 WILDCARDS_MATCH_SLASH_OPTION):
4686 New enum values.
4687
4688 (long_options, usage, decode_options): Add support for --anchored,
4689 --ignore-case, --no-anchored, --no-ignore-case, --no-wildcards,
4690 --no-wildcards-match-slash, --recursion, --wildcards,
4691 --wildcards-match-slash.
4692
4693 (decode_options): Implement the new way of interpreting exclude
4694 patterns.
4695
4696 (usage): --newer-mtime takes a DATE operand. DATE may be a file name.
4697
4698 (OPTION_STRING, decode_options): Add -I, -y. Currently these options
4699 just print error messages suggesting alternatives.
4700
4701 (add_filtered_exclude): Remove.
4702
4703 * tests/Makefile.am (TESTS): Alphabetize, except put version.sh first.
4704
4705 * tests/extrac04.sh (out): Remove
4706 directory/subdirectory/file1, as the new semantics for
4707 --exclude exclude it.
4708
4709 * tests/genfile.c (main): Don't use non-ASCII char in msgid.
4710
4711 2001-08-12 Paul Eggert <eggert@twinsun.com>
4712
4713 * lib/addext.c (<errno.h>): Include.
4714 (errno): Declare if not defined.
4715 (addext): Work correctly on the Hurd, where pathconf returns -1 and
4716 leaves errno alone, because there is no limit. Also, work even if
4717 size_t is narrower than long.
4718
4719 2001-07-08 Paul Eggert <eggert@twinsun.com>
4720
4721 * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
4722
4723 2001-05-10 Paul Eggert <eggert@twinsun.com>
4724
4725 * lib/addext.c (ISSLASH, base_name): Remove decls; now in dirname.h.
4726 Include <backupfile.h> and <dirname.h> after size_t is defined.
4727 (addext): Use base_len to trim redundant trailing slashes instead of
4728 doing it ourselves.
4729
4730 * lib/backupfile.c (ISSLASH, base_name):
4731 Remove decls; now in dirname.h.
4732 Include <argmatch.h>, <backupfile.h>, <dirname.h> after size_t
4733 is defined.
4734 (find_backup_file_name): Rename locals to avoid new functions.
4735 Use base_len instead of rolling it ourselves.
4736 Work even if dirlen is 0.
4737 Use a dir of '.' if given the empty string.
4738
4739 * lib/basename.c:
4740 Do not include <stdio.h>, <assert.h>; no longer needed.
4741 (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Remove; now in dirname.h.
4742 Include <string.h>, <dirname.h>.
4743 (base_name): Allow file names ending in slashes, other than names
4744 that are all slashes. In this case, return the basename followed
4745 by the slashes.
4746
4747 * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
4748 (FILESYSTEM_PREFIX_LEN, ISSLASH): Remove; now in dirname.h.
4749 (dir_len): Renamed from dirlen.
4750 All callers changed.
4751
4752 * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
4753 New macros.
4754 (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
4755
4756 2001-02-16 Paul Eggert <eggert@twinsun.com>
4757
4758 * lib/quotearg.c (mbrtowc, mbrtowc, mbsinit):
4759 Do not declare or define if HAVE_MBRTOWC,
4760 since the test for HAVE_MBRTOWC now requires proper declarations.
4761
4762 * lib/alloca.c (malloc): Undef before defining.
4763
4764 2001-02-13 Paul Eggert <eggert@twinsun.com>
4765
4766 * src/compare.c (read_and_process): Use off_t for size.
4767 From Maciej W. Rozycki.
4768
4769 2001-01-26 Paul Eggert <eggert@twinsun.com>
4770
4771 * lib/quotearg.c: Include stddef.h. From Jim Meyering.
4772
4773 2001-01-12 Paul Eggert <eggert@twinsun.com>
4774
4775 * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.19.
4776
4777 * lib/savedir.h (savedir): Remove size arg.
4778
4779 * doc/tar.texi: Add @setchapternewpage odd.
4780 Remove -I as an alias for -T, for now.
4781 Add @dircategory.
4782 Update copyright. Remove "Published by".
4783 Dates beginning with / or . are taken to be file names.
4784
4785 * src/tar.c (<time.h>): Do not include;
4786 (time): Do not declare.
4787 (usage): Remove -I as an alias for -T.
4788 (OPTION_STRING): Remove -I.
4789 (decode_options): Dates that look like an absolute path name,
4790 or that start with '.', are presumed to be file names whose
4791 dates are taken.
4792 Remove 'I' as an aliase for 'T'.
4793 Update copyright.
4794
4795 * src/extract.c (<time.h>): Do not include; system.h now does this.
4796 (make_directories): Skip filesystem prefixes.
4797 Don't assume '/' is the only separator.
4798 (extract_sparse_file): Use new full_write semantics.
4799 On write error, return instead of invoking skip_file.
4800 Do not free sparsearray; caller does this now.
4801 (apply_nonancestor_delayed_set_stat): Do not assume '/' is the only
4802 separator.
4803 (extract_archive): Don't assume file name lengths fit in int.
4804 Report what got stripped from member name; it might be more than '/'.
4805 Use new full_write semantics.
4806 Do not pass redundant trailing "/" to mkdir, as POSIX does not allow
4807 mkdir to ignore it.
4808 Do not report mkdir error if old_files_option == KEEP_OLD_FILES.
4809
4810 * src/buffer.c (<time.h>): Do not include; system.h now does this.
4811 (time): Remove decl; likewise.
4812 (child_open_for_uncompress): Use new full_write semantics.
4813 (flush_write): Use ISSLASH instead of testing for '/'.
4814 (flush_read): Likewise.
4815
4816 * src/rmt.h (_remdev): Look for / anywhere in Path.
4817
4818 * src/misc.c (contains_dot_dot): Skip filesystem prefix.
4819 Don't assume '/' is the only separator.
4820 (safer_rmdir): Don't assume '/' is the only separator.
4821
4822 * src/compare.c (diff_archive): Don't assume '/' is the only separator.
4823
4824 * lib/dirname.h (dirlen): New decl.
4825
4826 * src/incremen.c (get_directory_contents):
4827 Remove path_size arg; all callers changed.
4828 Don't assume '/' is the only directory separator.
4829 (gnu_restore): Work even if file name length doesn't fit in int.
4830
4831 * lib/addext.c (ISSLASH): New macro.
4832 (addext): Trim any redundant trailing slashes.
4833
4834 * src/names.c (name_next):
4835 Don't assume '/' is the only directory separator.
4836 (namelist_match): Likewise.
4837 (add_hierarchy_to_namelist): Remove dirsize arg.
4838 Do not assume '/' is the only directory separator.
4839 (new_name): Likewise.
4840
4841 * lib/Makefile.am (noinst_HEADERS): Add dirname.h, full-write.h.
4842 (libtar_a_SOURCES): Add dirname.c.
4843
4844 * src/create.c (relativize):
4845 New function, with much of old start_header's guts.
4846 Handle filesystem prefixes.
4847 (start_header): Use this new function.
4848 (init_sparsearray): Don't bother to zero out the new array;
4849 it's not needed.
4850 (deal_with_sparse): Fix array allocation bug.
4851 (create_archive): Don't assume '/' is the only separator.
4852 (dump_file): Likewise.
4853 Don't worry about leading / in symlink targets.
4854
4855 * lib/savedir.c (savedir):
4856 Remove size arg; it wasn't portable. All callers changed.
4857
4858 * lib/utime.c (utime_null): Adjust to new full_write convention.
4859
4860 * configure.in (YACC): Avoid portability problem with Ultrix sh.
4861
4862 * lib/backupfile.c: Include <dirname.h>.
4863 (ISSLASH): New macro.
4864 (find_backup_file_name): Use dirlen to calculate directory lengths.
4865 (max_backup_version): Strip redundant trailing slashes.
4866
4867 * src/common.h: Include <full-write.h>.
4868 (get_directory_contents): No longer has size arg.
4869 (gnu_restore): Arg is size_t, not int.
4870
4871 * src/system.h: Include <time.h>.
4872 (time): Declare if not defined.
4873
4874 * lib/full-write.c: Include full-write.h, not safe-read.h.
4875 full_write returns size_t, with short writes meaning failure.
4876 All callers changed.
4877
4878 * src/rtapelib.c: Include full-write.h.
4879
4880 * src/rmt.c: Include full-write.h.
4881 (main): Update copyright.
4882
4883 * doc/getdate.texi: Mention that only English is supported.
4884 Show how to use "date" so that the output is acceptable to getdate.
4885 Mention Z as an abbreviation for UTC.
4886
4887 * lib/full-write.h: New file.
4888
4889 * src/list.c: system.h now does time.h stuff.
4890
4891 * lib/dirname.c:
4892 Use HAVE_STDLIB_H, not STDC_HEADERS, to decide whether to include
4893 stdlib.h.
4894 Do not include string.h, strings.h, or assert.h; no longer needed.
4895 (strrchr, memrchr, malloc): Remove decls; no longer needed.
4896 Include <xalloc.h>.
4897 (base_name): New decl.
4898 (BACKSLASH_IS_PATH_SEPARATOR): Remove.
4899 (dir_name_r): Remove.
4900 (dirlen): New function.
4901 (dir_name): Use dirlen instead of dir_name_r.
4902 (<string.h>, <strings.h>): Include only if test program.
4903 (main): Use "return 0", not "exit (0)".
4904
4905 2000-12-08 Paul Eggert <eggert@twinsun.com>
4906
4907 * lib/dirname.h: New file.
4908
4909 2000-11-02 Vesselin Atanasov <vesselin@bgnet.bg>
4910
4911 * lib/fnmatch.c: Do not comment out all the code if we are using
4912 the GNU C library, because in some cases we are replacing buggy
4913 code in the GNU C library itself.
4914
4915 2000-10-30 Paul Eggert <eggert@twinsun.com>
4916
4917 * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
4918
4919 2000-10-29 Paul Eggert <eggert@twinsun.com>
4920
4921 * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.18.
4922
4923 * src/tar.c: Include <fnmatch.h>, for FNM_LEADING_DIR.
4924
4925 2000-10-28 Paul Eggert <eggert@twinsun.com>
4926
4927 * doc/tar.texi: --no-recursion now applies to extraction, too.
4928 * src/create.c (dump_file): no_recurse_option -> ! recursion_option
4929 * src/names.c (namelist_match, excluded_name):
4930 Do not match subfiles of a directory
4931 if --no-recursion is specified.
4932 * src/tar.c (NO_RECURSE_OPTION): Remove.
4933 (long_options): Have getopt set the --no-recursion flag.
4934 (decode_options): Initialize recursion_option to FNM_LEADING_DIR.
4935 Remove case for NO_RECURSE_OPTION.
4936 * src/common.h (recursion_option):
4937 Renamed from no_recurse_option, with sense
4938 negated, and with FNM_LEADING_DIR being the nonzero value.
4939
4940 * names.c (namelist_match): New function.
4941 (name_match, name_scan): Use it to eliminate duplicate code.
4942 (names_notfound): Remove special case for Amiga.
4943
4944 2000-10-27 Paul Eggert <eggert@twinsun.com>
4945
4946 * src/misc.c (read_error_details, read_warn_details,
4947 read_fatal_details): Don't assume size_t is unsigned long.
4948
4949 * src/buffer.c (flush_read): If read_full_records_option, try to
4950 fill the input buffer, as --delete -f - needs this.
4951
4952 2000-10-24 Paul Eggert <eggert@twinsun.com>
4953
4954 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Port to autoconf 2.13.
4955
4956 * src/buffer.c (check_label_pattern):
4957 Make sure header name is a string before
4958 passing it to fnmatch.
4959 (init_volume_number): Check for global_volno overflow.
4960 (new_volume): Check for global_volno overflow.
4961
4962 * src/tar.c (decode_options):
4963 Check that volume label is not too long to overflow
4964 name in tar header block.
4965
4966 * Makefile.am (EXTRA_DIST): Remove rebox.el.
4967
4968 * configure.in (HAVE_DECL_STRERROR_R): Remove our handwritten code.
4969 (AC_FUNC_STRERROR_R): Use this instead.
4970
4971 2000-10-23 Paul Eggert <eggert@twinsun.com>
4972
4973 * src/extract.c: Include <time.h>, since we invoke "time".
4974
4975 * lib/prepargs.c (prepend_default_options):
4976 Don't use NULL, for portability.
4977
4978 * m4/fnmatch.m4: Add "working" to message.
4979
4980 * src/names.c: (_GNU_SOURCE): Remove; autoconf now does this.
4981 Include <hash.h>.
4982 (getpwuid, getgrgid): Declare only if system headers don't.
4983 (gid_to_gname): Don't invoke setgrent.
4984 (namelist): Now static, not global.
4985 (nametail): New var. All uses of namelast changed to use
4986 nametail, with one extra level of indirection.
4987 (name_gather): Use memcpy instead of strncpy + assignment of NUL.
4988 (name_match): Set nametail too, when setting namelist to null.
4989 (add_hierarchy_to_namelist): Change type of dir arg from char * to
4990 struct name *, so that we don't have to look up the name again
4991 here. Get change_dir from dir rather than as a separate arg. Add
4992 dirsize arg, and pass it along to get_directory_contents. Remove
4993 unnecessary check of directory type.
4994 (new_name): Do not append a slash if PATH already ends in one.
4995 (avoided_names, struct avoided_name): Remove.
4996 (avoided_name_table): New var, replacing avoided_names.
4997 (hash_avoided_name, compare_avoided_names): New function.
4998 (add_avoided_name, is_avoided_name): Use hash table rather than
4999 linked list.
5000
5001 * src/buffer.c (_GNU_SOURCE): Remove; autoconf now does this.
5002 (child_open_for_compress, child_open_for_uncompress,
5003 close_archive): Propagate any failure of the compression process
5004 back to "tar".
5005 (open_archive, flush_write, flush_read, close_archive): Do not
5006 allocate an array of size PATH_MAX, as PATH_MAX might be (size_t)
5007 -1. Instead, allocate an array with the size that's needed.
5008 (open_archive): Don't bother checking S_ISCHR of /dev/null.
5009 (backspace_output): Don't try to backspace past start of archive.
5010 (close_archive): Remove special case for DELETE_SUBCOMMAND.
5011
5012 * acconfig.h (_GNU_SOURCE, DEFAULT_ARCHIVE, DEFAULT_BLOCKING,
5013 DENSITY_LETTER, DEVICE_PREFIX, EMUL_OPEN3, HAVE_GETGRGID,
5014 HAVE_GETPWUID, HAVE_MKNOD, HAVE_RTAPELIB, HAVE_ST_FSTYPE_STRING,
5015 HAVE_UNION_WAIT, HAVE_UTIME_H, HAVE_VALLOC, MTIO_CHECK_FIELD, PACKAGE,
5016 PROTOTYPES, REMOTE_SHELL, STD_INC_PATH, VERSION, WITH_CATALOGS,
5017 WITH_DMALLOC, WITH_REGEX):
5018 Remove; now generated automatically.
5019
5020 * configure.in (_GNU_SOURCE): Define to empty, not 1, for
5021 compatibility for glibc fragments.
5022 (_GNU_SOURCE, HAVE_UTIME_H, MTIO_CHECK_FIELD,
5023 HAVE_ST_FSTYPE_STRING, HAVE_MKNOD, REMOTE_SHELL, DENSITY_LETTER,
5024 DEVICE_PREFIX, DEFAULT_ARCHIVE, DEFAULT_BLOCKING): Add comment so
5025 that we needn't put an entry into acconfig.h.
5026 (ALL_LINGUAS): Add da.
5027 (AC_C_BACKSLASH_A): Remove; jm_PREREQ_QUOTEARG now does this.
5028 (AC_CHECK_HEADERS): Add stdbool.h (for hash.h users), wctype.h
5029 (for strtol.c).
5030 (AC_MBSTATE_T): Add.
5031 (RMT): Append $(EXEEXT).
5032 (HAVE_GETGRGID, HAVE_GETPWUID, pe_AC_TYPE_SIGNED_CHAR): Remove.
5033 (HAVE_DECL_FREE, HAVE_DECL_GETGRGID, HAVE_DECL_GETPWUID,
5034 HAVE_DECL_GETENV, HAVE_DECL_MALLOC, HAVE_DECL_STRTOUL,
5035 HAVE_DECL_STRTOULL, HAVE_DECL_STRERROR_R): New macros.
5036 (jm_PREREQ_ADDEXT, jm_PREREQ_ERROR, jm_PREREQ_QUOTEARG): Add.
5037 (AC_REPLACE_FUNCS): Remove execlp; no longer needed.
5038 (AC_CHECK_FUNCS): Add clock_gettime; AC_SEARCH_LIBS wasn't enough.
5039 Remove mbrtowc; jm_PREREQ_QUOTEARG now does this.
5040 (EMUL_OPEN3): Remove; no longer needed.
5041 (DENSITY_LETTER, DEVICE_PREFIX): Simplify m4 quoting.
5042
5043 * m4/fnmatch.m4 (AC_FUNC_FNMATCH): Detect d*/*1 vs d/s/1 bug.
5044
5045 * src/common.h: Do not include basename.h.
5046 * src/rtapelib.c (base_name): Do not include basename.h;
5047 declare base_name instead.
5048
5049 * lib/basename.h, lib/execlp.c, lib/getpagesize.h, lib/mkdir.c:
5050 Remove these files.
5051 * lib/getstr.c, lib/getstr.h, lib/hash.h, lib/hash.h, lib/prepargs.c,
5052 lib/prepargs.h, lib/savedir.c, lib/savedir.h: New files.
5053 * lib/Makefile.am (EXTRA_DIST, noinst_HEADERS, libtar_a_SOURCES):
5054 Adjust to the above changes.
5055
5056 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove ../src/ansi2knr.
5057
5058 * src/open3.c: Remove.
5059
5060 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove ansi2knr.
5061 (tar_SOURCES): Remove open3.c.
5062 (INCLUDES): Remove -I.., as automake does that.
5063 (OMIT_DEPENDENCIES): ../lib/fnmatch.h -> fnmatch.h. Add localedir.h.
5064
5065 The following changes are to put LOCALEDIR into localedir.h instead
5066 of passing it on the command line.
5067 (DEFS): Remove.
5068 (DISTCLEANFILES): New macro.
5069 (localedir.h): New rule.
5070 (rmt.o tar.o): Now depend on localedir.h.
5071
5072 * tests/delete02.sh, tests/extrac04.sh: New files.
5073
5074 * tests/Makefile.am (AUTOMAKE_OPTIONS): Remove ansi2knr.
5075 (TESTS): Add extrac04.sh, and restore delete02.sh.
5076 (DEFS): Remove; LOCALEDIR is now done via localedir.h.
5077 (INCLUDES): Remove -I.. as automake does this now.
5078
5079 * src/rtapelib.c (rexec): Don't declare unless using it.
5080 (do_command): Simplify signal-handling code slightly.
5081
5082 * src/delete.c (blocks_needed): Remove. All uses changed to use
5083 blocking_factor - new_blocks.
5084 (acting_as_filter): New var.
5085 (write_record, delete_archive_members): Use acting_as_filter
5086 rather than archive == STDIN_FILENO to detect whether we're acting
5087 as a filter, as open can return STDIN_FILENO in some cases.
5088 (delete_archive_members): Ignore zero blocks if
5089 ignore_zeros_option is nonzero. Fix bug that messed up last
5090 output block: write_eot can't be used here, as it gets confused
5091 when the input is at end of file.
5092
5093 * src/compare.c (diff_archive): Do not impose an arbitrary limit on
5094 symbolic link contents length. Pass directory size to
5095 get_directory_contents.
5096
5097 * m4/decl.m4, m4/error.m4, m4/mbstate_t.m4, m4/prereq.m4,
5098 m4/strerror_r.m4: New files.
5099 * m4/signedchar.m4: Remove this file.
5100 * Makefile.am (ACINCLUDE_INPUTS): Adjust to above changes.
5101 * m4/Makefile.am (EXTRA_DIST): Likewise.
5102
5103 * Makefile.am (DISTCLEANFILES): Add intl/libintl.h.
5104
5105 * po/da.po: New translation file.
5106
5107 * src/mangle.c (extract_mangle):
5108 Fix diagnostic with wrong number of %s'es.
5109
5110 * lib/fnmatch.c (fnmatch):
5111 Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
5112 e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
5113
5114 * lib/full-write.c (full_write): Some buggy drivers return 0 when you
5115 fall off a device's end. Detect this.
5116
5117 * src/system.h (IN_CTYPE_DOMAIN): Renamed from CTYPE_DOMAIN. All
5118 uses changed.
5119 (open): Remove macro; we no longer support EMUL_OPEN3. Do not
5120 include <pathmax.h> and directory include files like <dirent.h>;
5121 no longer used. Include <savedir.h> instead.
5122 (closedir, signed_char): remove macro; no longer used.
5123 (bool, false, true): Include <stdbool.h> if you have the include
5124 file, otherwise define.
5125
5126 * src/misc.c:
5127 (is_dot_or_dotdot, closedir_error, closedir_warn, opendir_error,
5128 opendir_warn, readdir_error): Remove; no longer needed.
5129 (safer_rmdir): Strip leading ./ (or .// or ./// or ././ or etc.)
5130 before deciding whether we're trying to remove ".".
5131 (remove_any_file): Try unlink first if we are not root. Use
5132 savedir when recursively removing directories, to avoid exhausting
5133 file descriptors.
5134 (savedir_error, savedir_warn, symlink_error): New functions.
5135
5136 * src/list.c: (read_and): Do not invoke
5137 apply_nonancestor_delayed_set_stat; DO_SOMETHING is now
5138 responsible for that. Do not invoke apply_delayed_set_stat; our
5139 caller is now responsible for that.
5140 (read_header): Use signed char instead of signed_char. Prevent
5141 later references to current_header from mistakenly treating it as
5142 an old GNU header.
5143 (from_header): Quote invalid base-64 strings in diagnostics.
5144 (time_from_header): Do not warn about future timestamps in
5145 archive; check_time now does that.
5146 (print_header): Quote unknown file types.
5147 (skip_member): New function, replacing skip_extended_headers and
5148 now skipping the whole member instead of just the extended
5149 headers. All callers changed. This makes the code handle
5150 extended headers uniformly, and fixes some bugs.
5151
5152 * src/update.c (update_archive): Use skip_member.
5153
5154 * src/extract.c (we_are_root): Now global.
5155 (struct delayed_symlink): New type.
5156 (delayed_symlink_head): New var.
5157 (extr_init, fatal_exit): Invoke extract_finish on fatal errors,
5158 not apply_delayed_set_stat.
5159 (set_mode, set_stat): Pointer args are now const pointers.
5160 (check_time): New function.
5161 (set_stat): Warn if setting a file's timestamp to be the future.
5162 (make_directories): Do not save and restore errno.
5163 (maybe_recoverable): Set errno to ENOENT if we cannot make missing
5164 intermediate directories.
5165 (extract_archive): Invoke apply_nonancestor_delayed_set_stat here,
5166 not in caller. Extract potentially dangerous symbolic links more
5167 carefully, deferring their creation until the end, and using a
5168 regular file placeholder in the meantime. Do not remove trailing
5169 / and /. from file names. Do not bother checking for ".." when
5170 checking whether a directory loops back on itself, as loopbacks
5171 can occur with symlinks too. Also, in that case, do not bother
5172 saving and restoring errno; just set it to EEXIST.
5173 (apply_nonancestor_delayed_set_stat): A prefix is a potential
5174 ancestor if it ends in slash too (as well as ending in a char just
5175 before slash).
5176 (apply_delayed_set_stat): Remove.
5177 (apply_delayed_symlinks, extract_finish): New functions.
5178
5179 * doc/fdl.texi: New file.
5180 * doc/Makefile.am (EXTRA_DIST): Add fdl.texi.
5181 ($(srcdir)/tar.info): Add fdl.texi. Invoke makeinfo with --no-split.
5182 * doc/tar.texi: Add Free Documentation License. New section
5183 "Overwrite Old Files", and revamp that section to make it easier to
5184 follow. "tar" -> "GNU tar" where appropriate. Migrate getdate
5185 documentation into getdate.texi. Fix several minor typos. Describe
5186 TAR_OPTIONS. Describe incompatibility between incremental backups and
5187 --atime-preserve. Describe incompatibility between --verify and other
5188 options. Mention that tar normally removes symbolic links rather than
5189 following them, when extracting a file of the same name.
5190
5191 * THANKS: Add gpoul. Change skip's address.
5192
5193 * po/POTFILES.in: Add lib/human.c.
5194
5195 * src/common.h (namelist, namelast): Remove decls.
5196 (we_are_root, extract_finish, skip_member, savedir_error,
5197 savedir_warn, symlink_error, gnu_list_name): New decls.
5198 (apply_delayed_set_stat, apply_nonancestor_delayed_set_stat,
5199 skip_extended_headers, is_dot_or_dotdot, closedir_error,
5200 closedir_warn, opendir_error, opendir_warn, readdir_error,
5201 readdir_warn): Remove decls.
5202 (get_directory_contents): New off_t arg.
5203 (addname): Now returns struct name *.
5204
5205 * src/tar.h, tests/genfile.c: Fix comments.
5206
5207 * src/create.c: Include hash.h.
5208 (gnu_list_name): Remove decl.
5209 (struct link): Remove "next" member.
5210 (linklist): Remove.
5211 (start_header): Say "leading `FOO'" rather than "`FOO' prefix" for
5212 consistency with other diagnostics.
5213 (deal_with_sparse): Check for I/O error when closing the file.
5214 (create_archive): Do not allocate an array of size PATH_MAX, as
5215 PATH_MAX might be (size_t) -1. Instead, allocate an array with
5216 the size that's needed.
5217 (hash_link, compare_links): New functions.
5218 (dump_file): Do not exhaust open file descriptors when descending
5219 deeply into a directory, by using savedir rather than
5220 opendir/readdir. Do not zero-fill the name buffer unnecessarily.
5221 Hash the set of links already created, instead of using a linked
5222 list. Fix some bugs in outputting sparse files which caused the
5223 sparse tables to be incorrect. When a file unexpectedly shrinks,
5224 output zeros rather than garbage. Do not allocate an array of
5225 size PATH_MAX, as PATH_MAX might be (size_t) -1. Instead,
5226 allocate an array with the size that's needed.
5227
5228 * src/incremen.c: Include hash.h.
5229 (struct directory): Remove "next", "dir_text". Change "name" to
5230 be char[1] with struct hack, not const char *. Add "found".
5231 (directory_list): Remove. Replaced by directory_table.
5232 (directory_table): New var.
5233 (nfs_string): Renamed from nfs.
5234 (hash_directory, compare_directories): New functions.
5235 (note_directory): Now returns struct directory *. First arg is
5236 now const pointer. struct stat arg is now dev_t, ino_t, nfs.
5237 Remove text arg. New "found" arg, basically corresponding to the
5238 old text arg not being null. All callers changed.
5239 (note_directory, find_directory): Use hash table rather than
5240 linked list.
5241 (get_directory_contents): New arg "device". Use savedir to do the
5242 hard work. Save the nfs-ness of stat_data, since it might change
5243 under us. Use note_directory instead of find_directory to save
5244 some work. When adding an "A" record, do it with
5245 add_to_accumulator instead of cheating with strcat.
5246 (read_directory_file): Use "+" flag before device to indicate
5247 whether it was NFS. Fix typo in checking for strtoul error.
5248 (write_directory_file_entry): New function.
5249 (write_directory_file): Use it, and use the hash routines to
5250 traverse the directory table.
5251 (gnu_restore): Use savedir rather than opendir/readdir.
5252
5253 * src/tar.c: Include localedir.h, prepargs.h.
5254 (long_options): Now static.
5255 (long_options, usage, decode_options): -j is now short for
5256 --bzip2, and -I is now an alias for -T.
5257 (decode_options, main): argv is not const pointer now.
5258 (decode_options): Invoke prepend_default_options to support
5259 TAR_OPTIONS. In diagnostic, mention the string that was the
5260 invalid blocking factor, tape length, group, owner, or record
5261 size. --delete is no longer incompatible with -f -, undoing
5262 2000-01-07 change.
5263 (main): Invoke extract_finish at end of extraction.
5264
5265 * src/rmt.c: Include localedir.h.
5266 (main): Update copyright date to 2000.
5267
5268 * doc/getdate.texi: New file, taken from fileutils 4.0.27, with the
5269 following changes: Use @sc where appropriate. Document the ranges of
5270 supported times more precisely. Add Eggert to getdate authors.
5271 Document old Latin 12m/12pm tradition. Remove list of alphabetic time
5272 zone names, as it wasn't correct and people shouldn't be relying on it
5273 anyway. Relative items also account for non-DST adjustments. Fix
5274 some misspellings.
5275
5276 * lib/prepargs.c, lib/prepargs.h, tests/extrac04.sh: New file.
5277
5278 * tests/ignfail.sh: opendir -> savedir in diagnostics.
5279
5280 * tests/preset.in: Set LANGUAGE to the empty string, for some
5281 brain damaged host.
5282
5283 2000-10-20 Paul Eggert <eggert@twinsun.com>
5284
5285 * m4/fnmatch.m4: Mention the GNU C library.
5286
5287 2000-10-19 Paul Eggert <eggert@twinsun.com>
5288
5289 * m4/fnmatch.m4: Add a couple more test cases to catch bugs in
5290 glibc 2.1.95.
5291
5292 2000-10-17 Paul Eggert <eggert@twinsun.com>
5293
5294 * lib/human.c (<limits.h>): Do not include; human.h does it if needed.
5295 (CHAR_BIT): Remove.
5296
5297 * lib/human.h (<limits.h>): Include if HAVE_LIMITS_H.
5298 (CHAR_BIT): Define if not defined.
5299
5300 2000-09-09 Paul Eggert <eggert@twinsun.com>
5301
5302 * lib/quotearg.c: From fileutils: rename ISASCII to IN_CTYPE_DOMAIN.
5303
5304 2000-08-07 Paul Eggert <eggert@twinsun.com>
5305
5306 * lib/xmalloc.c: Memory exhausted -> memory exhausted
5307
5308 * lib/xalloc.h (xalloc_msg_memory_exhausted):
5309 change to array from char *.
5310
5311 2000-08-06 Paul Eggert <eggert@twinsun.com>
5312
5313 * m4/mbstate_t.m4: Define mbstate_t to be int, not char, for
5314 compatibility with glibc 2.1.3 strftime.c.
5315
5316 2000-07-31 Paul Eggert <eggert@twinsun.com>
5317
5318 * lib/quotearg.c (quotearg_n_options):
5319 Don't make the initial slot vector a constant,
5320 since it might get modified.
5321
5322 * lib/quotearg.c: Add support for more than one preallocated slot.
5323
5324 2000-07-30 Paul Eggert <eggert@twinsun.com>
5325
5326 * lib/quotearg.c (quotearg_n_options):
5327 Preallocate a slot 0 buffer, so that the caller
5328 can always quote one small component of a "memory exhausted" message
5329 in slot 0.
5330
5331 2000-07-23 Paul Eggert <eggert@twinsun.com>
5332
5333 * lib/quotearg.c:
5334 Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX), so that
5335 mbstate_t is always defined.
5336
5337 Do not inspect MB_LEN_MAX, since it's incorrectly defined to be 1 in
5338 some GCC installations, and this configuration error is likely to be
5339 common.
5340
5341 2000-07-22 Paul Eggert <eggert@twinsun.com>
5342
5343 * lib/quotearg.c:
5344 When the system forces us to redefine mbstate_t, shadow its mbsinit
5345 function. From Bruno Haible.
5346
5347 2000-07-14 Paul Eggert <eggert@twinsun.com>
5348
5349 * lib/xmalloc.c: Simplify exhausted message.
5350
5351 * lib/quotearg.h: Update copyright date; from Jim Meyering.
5352
5353 2000-07-13 Paul Eggert <eggert@twinsun.com>
5354
5355 * lib/quotearg.h (enum quoting style):
5356 New constant clocale_quoting_style.
5357
5358 * lib/quotearg.c:
5359 (quoting_style_args, quoting_style_vals, quotearg_buffer_restyled):
5360 Add support for clocale_quoting_style, undoing previous change to
5361 locale_quoting_style.
5362
5363 2000-07-10 Paul Eggert <eggert@twinsun.com>
5364
5365 * lib/quotearg.c:
5366 <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX,
5367 since otherwise we don't need it.
5368 (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
5369 since we don't do multibytes in that case.
5370 (quotearg_buffer_restyled): If a unibyte locale, don't bother to
5371 invoke multibyte primitives.
5372
5373 * m4/mbstate_t.m4 (AC_MBSTATE_T):
5374 Renamed from AC_MBSTATE_T_OBJECT. All uses changed.
5375 Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
5376 and mbstate_t, to a single-part test that simply defines mbstate_t.
5377
5378 * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
5379 Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
5380 to decide whether to define the BeOS workaround macro;
5381 this adjusts to the change to AC_MBSTATE_T.
5382
5383 * m4/strerror_r.m4: New file.
5384
5385 2000-07-05 Paul Eggert <eggert@twinsun.com>
5386
5387 * lib/quotearg.c: Use double-quote to quote.
5388
5389 * lib/quotearg.c (N_): New macro.
5390 (gettext_default): New function.
5391 (quotearg_buffer_restyled): Use gettext_default ("{LEFT QUOTATION MARK}",
5392 "\"") for left quote, and gettext_default ("{RIGHT QUOTATION MARK}", "\"")
5393 for right quote.
5394
5395 * lib/quotearg.c (struct quoting_options):
5396 Simplify quote_these_too dimension.
5397 From Bruno Haible <haible@clisp.cons.org>.
5398
5399 * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT):
5400 Test for mbstate_t only if the test
5401 for an object-type mbstate_t fails.
5402
5403 * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
5404
5405 2000-07-03 Paul Eggert <eggert@twinsun.com>
5406
5407 * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
5408 Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
5409
5410 * lib/quotearg.c (mbrtowc):
5411 Assign to *pwc, and return 1 only if result is nonzero.
5412 (iswprint): Define to ISPRINT if we are substituting our own mbrtowc.
5413
5414 2000-07-02 Paul Eggert <eggert@twinsun.com>
5415
5416 * lib/quotearg.c (mbstate_t):
5417 Do not define; it should be defined with AC_CHECK_TYPE.
5418
5419 2000-06-26 Paul Eggert <eggert@twinsun.com>
5420
5421 * m4/mbstate_t.m4: Include stdio.h before wchar.h, to work around
5422 a bug in glibc 2.1.3.
5423
5424 * lib/xmalloc.c: Fix inaccurate comment for xrealloc.
5425
5426 2000-06-19 Paul Eggert <eggert@twinsun.com>
5427
5428 * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
5429 inclusion of wctype.h to work around solaris2.6 namespace pollution.
5430 (ISPRINT): Likewise.
5431 Reported by Tom Tromey.
5432
5433 2000-06-15 Paul Eggert <eggert@twinsun.com>
5434
5435 * lib/human.c (adjust_value): New function.
5436 (human_readable_inexact): Apply rounding style even when printing
5437 approximate values.
5438
5439 * lib/human.c: Avoid shadowing warnings.
5440 From Jim Meyering.
5441
5442 2000-06-14 Paul Eggert <eggert@twinsun.com>
5443
5444 * lib/human.c (human_readable_inexact): Allow an input block size
5445 that is not a multiple of the output block size, and vice versa.
5446
5447 * lib/getdate.y (get_date): Apply relative times after time zone
5448 indicator, not before.
5449
5450 2000-05-31 Paul Eggert <eggert@twinsun.com>
5451
5452 * m4/largefile.m4: Rewrite so that we don't need to run getconf,
5453 and thus don't need AC_CANONICAL_HOST.
5454
5455 (AC_SYS_LARGEFILE_FLAGS, AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
5456 (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
5457 (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
5458 CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY. All uses
5459 changed. Instead of inspecting the output of getconf, try to
5460 compile the test program without and with the macro definition.
5461 (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check for
5462 getconf. Instead, check for the needed flags by compiling test
5463 programs.
5464
5465 * configure.in (AC_CANONICAL_HOST): Remove; the largefile stuff no
5466 longer needs it.
5467 * config.guess, config.sub: Remove these files, for similar reasons.
5468
5469 2000-05-03 Paul Eggert <eggert@twinsun.com>
5470
5471 * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to be
5472 500, instead of _GNU_SOURCE to be 1, to work around glibc 2.1.3
5473 bug. This avoids a clash when files like regex.c that define
5474 _GNU_SOURCE.
5475
5476 2000-05-02 Paul Eggert <eggert@twinsun.com>
5477
5478 * m4/largefile.m4 (AC_SYS_LARGEFILE):
5479 Define _GNU_SOURCE if this is needed to make
5480 ftello visible (e.g. glibc 2.1.3). Use compile-time test, rather than
5481 inspecting host and OS, to decide whether to define _LARGEFILE_SOURCE.
5482
5483 * lib/quotearg.c (mbrtowc, mbstat_t):
5484 Add definitions if !HAVE_MBSTATE_T_OBJECT.
5485 (<wctype.h>): Include if HAVE_WCTYPE_H.
5486 (iswprint): Define to 1 if we lack it
5487
5488 2000-04-18 Paul Eggert <eggert@twinsun.com>
5489
5490 * m4/mbstate_t.m4: New file.
5491
5492 2000-04-17 Bruno Haible <haible@clisp.cons.org>
5493
5494 * tests/ignfail.sh: Test for uid 0 along with user "root".
5495
5496 2000-04-05 Paul Eggert <eggert@twinsun.com>
5497
5498 * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS):
5499 Don't use -n32 on IRIX if the installer said
5500 otherwise.
5501
5502 2000-02-28 Paul Eggert <eggert@twinsun.com>
5503
5504 * lib/quotearg.c (ALERT_CHAR): New macro.
5505 (quotearg_buffer_restyled): Use it.
5506
5507 2000-02-23 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5508
5509 * src/list.c (tartime): Fix off-by-one error when copying year if
5510 OLD_CTIME.
5511
5512 2000-02-18 Paul Eggert <eggert@twinsun.com>
5513
5514 * lib/getdate.y: Handle two-digit years with leading zeros correctly.
5515 (textint): New typedef.
5516 (parser_control): Changed from struct parser_control to typedef
5517 (for consistency). Member year changed from int to textint. All
5518 uses changed.
5519 (YYSTYPE): Removed; replaced by %union with int and textint
5520 members.
5521 (tID): Removed; not used.
5522 (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE,
5523 tMERIDIAN, tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER,
5524 tUNUMBER, tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
5525 (tSNUMBER, tUNUMBER): Now of type <textintval>.
5526 (date, number, to_year): Use width of number in digits, not its
5527 value, to determine whether it's a 2-digit year, or a 2-digit
5528 time.
5529 (yylex): Store number of digits of numeric tokens. Return '?' for
5530 unknown identifiers, rather than (unused) tID.
5531
5532 2000-01-16 Paul Eggert <eggert@twinsun.com>
5533
5534 * lib/quotearg.c (quotearg_buffer_restyled):
5535 Do not quote alert, backslash, formfeed,
5536 and vertical tab unnecessarily in shell quoting style.
5537
5538 2000-01-15 Paul Eggert <eggert@twinsun.com>
5539
5540 * m4/c-bs-a.m4:
5541 Change quoting to be compatible with future autoconf versions.
5542
5543 2000-01-11 Paul Eggert <eggert@twinsun.com>
5544
5545 * lib/exclude.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Remove unused macros.
5546
5547 2000-01-07 Paul Eggert <eggert@twinsun.com>
5548
5549 * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.17.
5550
5551 Fix bug with fnmatch.h dependency, as follows:
5552 * src/Makefile.am (OMIT_DEPENDENCIES): New macro.
5553 * lib/Makefile.am (OMIT_DEPENDENCIES): New macro.
5554
5555 * src/common.h (apply_nonancestor_delayed_set_stat):
5556 Renamed from apply_delayed_set_stat.
5557 (apply_delayed_set_stat, decode_mode, chmod_error_details,
5558 chown_error_details, close_warn, closedir_warn, mkdir_error,
5559 read_error_details, read_fatal_details, read_warn_details,
5560 seek_error_details, seek_warn_details, utime_error,
5561 write_error_details, write_fatal_details): New decls.
5562
5563 Make diagnostic messages more regular.
5564 * src/create.c (dump_file): Quote file names with colons if possible.
5565 * src/compare.c (diff_archive): Likewise.
5566 * src/extract.c (repair_delayed_set_stat, extract_archive): Likewise.
5567 * src/incremen.c (get_directory_contents, gnu_restore): Likewise.
5568 * src/mangle.c (extract_mangle): Likewise.
5569 * src/misc.c (call_arg_error, call_arg_fatal, call_arg_warn):
5570 Likewise.
5571 * src/buffer.c (archive_write_error, flush_archive, close_archive,
5572 new_volume, xclose):
5573 Use error message functions to report errors consistently.
5574 * src/compare.c (diff_sparse_files, diff_archive): Likewise.
5575 * src/create.c (finish_sparse_file, dump_file): Likewise.
5576 * src/extract.c (set_mode, set_stat, extract_sparse_file,
5577 extract_archive): Likewise.
5578 * src/list.c (list_archive): Likewise.
5579 * src/update.c (append_file): Likewise.
5580 * src/compare.c (diff_init, diff_sparse_files):
5581 Use xalloc_die to report memory exhaustion.
5582 * src/incremen.c (gnu_restore): Likewise.
5583 * src/list.c (read_header): Likewise.
5584 * src/mangle.c (extract_mangle): Likewise.
5585 * src/misc.c (maybe_backup_file): Likewise.
5586 * src/tar.c (decode_options): Likewise.
5587 * src/compare.c (read_and_process, fill_in_sparse_array,
5588 diff_sparse_files):
5589 Use consistent terminology for unexpected-EOF message.
5590 * src/extract.c (extract_sparse_file, extract_archive): Likewise.
5591 * src/list.c (list_archive, read_header, skip_file,
5592 skip_extended_headers): Likewise.
5593 * src/buffer.c (archive_write_error): Add noreturn attribute to decl.
5594 (xdup2): Regularize messages with rest of tar.
5595
5596 * src/buffer.c (flush_read): Don't read past EOF.
5597
5598 * src/extract.c (extr_init):
5599 If we run out of memory, invoke apply_delayed_set_stat.
5600 (prepare_to_extract): Don't complain if we can't remove ".".
5601 (apply_delayed_set_stat): New function.
5602 (apply_nonancestor_delayed_set_stat):
5603 Renamed from apply_delayed_set_stat. All uses changed.
5604 Don't remove head if it doesn't apply.
5605
5606 * src/create.c (find_new_file_size):
5607 Return size instead of storing through pointer.
5608 All callers changed.
5609 (deal_with_sparse): Don't keep reading after read errors.
5610 (finish_sparse_file): Just abort if there is an internal error.
5611 (dump_file): Fix typo: stat_warn and stat_error were interchanged.
5612 Don't restore access times on directories during incremental dumps
5613 until after dealing with the directory.
5614 If ignoring failed reads, count closedir, read, and unknown
5615 file errors as warnings, not errors.
5616 Fix buffer overrun problem when dumping sparse files.
5617
5618 * src/list.c (read_and):
5619 Invoke apply_nonancestor_delayed_set_stat on file names
5620 after handling them.
5621 (decode_mode): Remove; moved to misc.c.
5622
5623 * src/misc.c (safer_rmdir): New function.
5624 (remove_any_file): Use it to avoid problems with rmdir(".").
5625 (maybe_backup_file): Regularize diagnostics.
5626 (undo_backup_file): Likewise.
5627 (decode_mode): Moved here from list.c.
5628 (chmod_error_details, chown_error_details, close_fatal,
5629 close_warn, closedir_warn, mkdir_error, read_error_details,
5630 read_warn_details, read_fatal_details, seek_error_details,
5631 seek_warn_details, utime_error, write_error_details,
5632 write_fatal_details): New functions.
5633
5634 * src/delete.c (save_record): Remove static variable (now local).
5635 (move_archive): Don't position before start of archive.
5636 (write_record): Abort if count is zero at inopportune time.
5637 Plug memory leak.
5638
5639 * src/tar.c (decode_options): --delete and -f - are now
5640 incompatible, since we didn't have time to fix their bugs.
5641
5642 * tests/Makefile.am (TESTS): Remove delete02.sh.
5643 * tests/ignfail.sh: Adjust to new quoting scheme again.
5644
5645 2000-01-06 Paul Eggert <eggert@twinsun.com>
5646
5647 * lib/getdate.y: Sync tm_diff with the GNU C Library.
5648 (TM_YEAR_BASE): Renamed from TM_YEAR_ORIGIN. All uses changed.
5649 (tm_diff): Renamed from difftm. All uses changed.
5650 Replace body with that taken from GNU C Library 2.1.3pre1.
5651 (get_date): Prefer tm_gmtoff to tm_diff if available.
5652
5653 1999-12-29 "Melissa O'Neill" <oneill@cs.sfu.ca>
5654
5655 * tests/incremen.sh: Invoke stat on newly created file so that its
5656 ctime is updated on Nextstep.
5657
5658 1999-12-21 Machael Stone <mstone@cs.loyola.edu>
5659
5660 * lib/getdate.y (get_date):
5661 Fix typo when checking for time_t overflow in time zone calculations.
5662
5663 1999-12-13 Paul Eggert <eggert@twinsun.com>
5664
5665 * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.16.
5666
5667 * README-alpha: New file.
5668 * README: New sections for gzip and bzip2, Solaris.
5669 Remove mention of BACKLOG.
5670
5671 * configure.in (AC_C_BACKSLASH_A): Add.
5672 (AC_CHECK_HEADERS): Add wchar.h.
5673 (AC_CHECK_FUNCS): Add mbrtowc.
5674 (AC_FUNC_CLOSEDIR_VOID): Add.
5675
5676 * tests/Makefile.am (TESTS): Add delete02.sh.
5677 (POSTPONED_TESTS): Remove.
5678 (EXTRA_DIST): Remove $(POSTPONED_TESTS).
5679
5680 * tests/preset.in:
5681 Set LC_ALL rather than LANGUAGE, LANG, and LC_MESSAGES.
5682
5683 * tests/ignfail.sh (err): Adjust to new quoting scheme.
5684
5685 * tests/delete02.sh: Fix typo: need to list archive2, not archive.
5686
5687 * tests/extrac03.sh: Use -P option, so that .. doesn't get diagnosed.
5688
5689 * src/tar.c ("quotearg.h"): New include.
5690 (usage): Now has __attribute__ ((noreturn)).
5691 (confirm): Report errno if we can't open tty.
5692 (confirm, decode_options):
5693 Quote arbitrary strings in diagnostics.
5694 (OVERWRITE_OPTION): New constant.
5695 (long_options, usage, decode_options): New --overwrite option.
5696 (decode_options): --keep-old-files, --overwrite, and --unlink-first
5697 are now mutually exclusive.
5698 Don't assume that gettext preserves errno.
5699 (main): Set default quoting style to escape_quoting_style.
5700
5701 * src/update.c (<quotearg.h>): New include.
5702 (append_file):
5703 Don't assume that gettext preserves errno.
5704 Quote arbitrary strings in diagnostics.
5705 Check for close error.
5706
5707 * src/names.c (<quotearg.h>): New include.
5708 (name_init, name_next, name_close, names_notfound,
5709 collect_and_sort_names): Don't assume that gettext preserves
5710 errno. Quote arbitrary strings in diagnostics.
5711 (excluded_name): Fix typo that caused empty patterns to be
5712 mishandled.
5713
5714 * src/misc.c (<quotearg.h>): New include.
5715 (quote_copy_string): Quote only newline and backslash; the output is no
5716 longer meant for humans, and is locale-independent.
5717 (contains_dot_dot): New function.
5718 (remove_any_file): Don't use lstat; just rmdir the file and then use
5719 unlink if the rmdir fails because the file isn't a directory.
5720 Check for readdir and closedir errors.
5721 (maybe_backup_file): Report "stat" for stat errors.
5722 (maybe_backup_file, chdir_do):
5723 Quote arbitrary strings in diagnostics.
5724 (maybe_backup_file, undo_last_backup):
5725 Don't assume that gettext preserves errno.
5726 (call_arg_error, call_arg_fatal, call_arg_warn,
5727 chdir_fatal, close_error, closedir_error, exec_fatal, mkfifo_error,
5728 mknod_error, open_error, open_fatal, open_warn, opendir_error,
5729 opendir_warn, read_error, read_fatal, readdir_error, readdir_warn,
5730 readlink_error, readlink_warn, seek_error, seek_warn, stat_error,
5731 stat_warn, truncate_error, truncate_warn, unlink_error, waitpid_error,
5732 write_error, write_fatal, xfork, xpipe, quote_n, quote): New functions.
5733
5734 * src/system.h (__attribute__): New macro.
5735 (O_NDELAY, O_NONBLOCK, O_APPEND): Remove.
5736 (S_ISDOOR): New macro.
5737 (closedir): New macro, if CLOSEDIR_VOID.
5738
5739 * src/rmt.c, src/rtapelib.c (decode_oflag):
5740 O_APPEND might not be defined.
5741
5742 * src/list.c: (read_and, list_archive):
5743 Quote arbitrary strings in diagnostics.
5744 (from_header): Use locale_quoting_style to quote diagnostics.
5745 (print_header, print_for_mkdir): Quote with quotearg, not quote_copy_string.
5746
5747 * src/rmt.h (REM_BIAS): Increase from 128 to (1 << 30).
5748
5749 * src/Makefile.am: Use ## for copyright comments.
5750
5751 * src/extract.c (<quotearg.h>): New include.
5752 (enum permstatus): New enum.
5753 (struct delayed_set_stat): file_name is now at end of buffer, to avoid
5754 two mallocs. New members file_name_len, invert_permissions, permstatus.
5755 (extr_init): Remove hack that silently adjusted newdir_umask.
5756 (set_mode, set_stat): New args invert_permissions, permstatus, typeflag.
5757 Use these args to decide whether and how to set modes.
5758 (set_mode, set_stat, prepare_to_extract, extract_sparse_file, extract_archive):
5759 Don't assume that gettext preserves errno.
5760 (set_stat): Remove arg symlink_flag; subsumed by typeflag.
5761 (delay_set_stat, repair_delayed_set_stat): New functions.
5762 (make_directories): Avoid mkdir where last part of path is "..".
5763 Create a struct delayed_set_stat for each directory made.
5764 (prepare_to_extract): Renamed from unlink_destination, and
5765 return 0 immediately if to_stdout_option; all callers changed.
5766 (maybe_recoverable): New parameter interdir_made.
5767 Add support for --overwrite.
5768 (extract_sparse_file, extract_archive):
5769 Quote arbitrary strings in diagnostics.
5770 (extract_archive): By default, warn about ".." in member names, and skip them.
5771 Don't open files with O_NONBLOCK or O_APPEND.
5772 Open with O_TRUNC only if --overwrite; otherwise, use O_EXCL to avoid
5773 overwriting them. Pass only rwxrwxrwx permissions to `open' and `mkdir',
5774 minus the current umask. Keep track of intermediate directories made,
5775 to avoid looping when making x/../x when x doesn't exist; the
5776 earlier code solved this in a different way that didn't fit well
5777 into the new scheme. Don't extract permissions onto existing
5778 directories unless --overwrite is given. Do not add -wx------
5779 permissions to new directories permanently; just do it temporarily.
5780 Remove no-longer-needed hack with MSDOS and directory time stamps.
5781 (apply_delayed_set_stat): New argument specifies which directories to
5782 fix statuses of. Do not wait until the end of extraction to fix
5783 statuses; instead, fix a directory's status once we exit that directory.
5784 This requires less memory and does the right thing in some cases
5785 where the old method didn't.
5786 (fatal_exit): New function.
5787
5788 * src/incremen.c (<quotearg.h>): New include.
5789 (get_directory_contents, gnu_restore):
5790 Check for readdir and closedir errors.
5791 (get_directory_contents, read_directory_file, gnu_restore):
5792 Quote arbitrary strings in diagnostics.
5793 (get_directory_contents, read_directory_file, write_directory_file):
5794 Don't assume that gettext preserves errno.
5795
5796 * src/create.c (<quotearg.h>): New include.
5797 (start_header): Use `member names' to refer to archive member names, not
5798 `archive names'. Warn about `..' in member names.
5799 (finish_sparse_file, dump_file):
5800 Quote arbitrary strings in diagnostics.
5801 (finish_sparse_file, dump_file):
5802 Don't assume that gettext preserves errno.
5803 (dump_file): Don't use `access' to determine whether a directory is readable;
5804 this isn't reliable if tar is setuid. Use `opendir' instead.
5805 Check for readdir and closedir failures.
5806 Don't dump sockets as if they were fifos; just warn and skip.
5807
5808 * src/delete.c (move_archive):
5809 Don't report fatal error merely because sizes don't fit
5810 into struct mtop values; fall back on lseek instead.
5811 Say `Cannot' uniformly, instead of `Could not' sometimes and `Cannot' others.
5812 Say `reposition' instead of `re-position'.
5813 (delete_archive_members):
5814 Set archive to STDOUT_FILENO before outputting trailing buffer.
5815
5816 * src/compare.c (<quotearg.h>): New include.
5817 (diff_init): Use `Cannot' uniformly, instead of `Could not' sometimes
5818 and `Cannot' others.
5819 (report_difference, diff_archive):
5820 Quote arbitrary strings in diagnostics.
5821 (process_rawdata, diff_sparse_files, get_stat_data, diff_archive, seek_warn):
5822 Don't assume that gettext preserves errno.
5823 (diff_archive): Don't open regular files with O_NONBLOCK.
5824 Preserve access times of files if --atime.
5825
5826 * src/common.h (FATAL_ERROR): Use new fatal_exit function to exit.
5827 (FATAL_ERROR, USAGE): Don't return 0.
5828 (enum old files): New enum.
5829 (old_files_option): New variable, replacing keep_old_files_option and
5830 unlink_first_option.
5831 (apply_delayed_set_stat): Now takes char const * param.
5832 (fatal_exit, contains_dot_dot, chdir_fatal, close_error,
5833 closedir_error, exec_fatal, mkfifo_error, mknod_error, open_error,
5834 open_fatal, open_warn, opendir_error, opendir_warn, read_error,
5835 read_fatal, readdir_error, readdir_warn, readlink_error,
5836 readlink_warn, seek_error, seek_warn, stat_error, stat_warn,
5837 truncate_error, truncate_warn, unlink_error, waitpid_error,
5838 write_error, write_fatal, xfork, xpipe, quote, quote_n): New decls.
5839
5840 * src/buffer.c:
5841 (xclose, xdup2, child_open_for_compress, child_open_for_uncompress,
5842 archive_write_error, archive_read_error, flush_archive, close_archive,
5843 init_volume_number, new_volume):
5844 Don't assume that gettext preserves errno.
5845
5846 (xdup2): Don't report errno if dup returns an unexpected nonnegative value.
5847 (open_archive): Reject multivolume verify attempts a bit earlier.
5848 Rename local variable `access', in case it's defined by system header.
5849
5850 (open_archive, backspace_output): Use `Cannot' uniformly, instead of
5851 `Could not' sometimes and `Cannot' others.
5852
5853 (open_archive, flush_read, flush_archive, close_archive, new_volume):
5854 Quote arbitrary strings in diagnostics.
5855
5856 (read_error): Set archive to STDOUT_FILENO temporarily when writing
5857 archive buffer.
5858
5859 (init_volume_number): Check for input and output errors in volno_file.
5860
5861 (new_volume): Use new fatal_exit function to exit, and new xfork
5862 function to fork.
5863
5864 * m4/Makefile.am (EXTRA_DIST): Add c-bs-a.m4.
5865
5866 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/c-bs-a.m4.
5867
5868 * doc/tar.texi: Add --overwrite.
5869 --absolute-names rejects ".." in names.
5870
5871 * lib/quotearg.c: Add support for multibyte characters.
5872 (ISGRAPH): Remove.
5873 (ISPRINT): New macro.
5874 (<wchar.h>): Include if HAVE_MBRTOWC && HAVE_WCHAR_H.
5875 (isprint, mbrtowc, mbsinit, mbstate_t): New macros,
5876 defined if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
5877 (quotearg_buffer_restyled): New function, with most of the old
5878 quotearg_buffer's contents.
5879 Major rewrite to support multibyte characters.
5880 (quotearg_buffer): Now just calls quotearg_buffer_restyled.
5881
5882 * m4/c-bs-a.m4: New file.
5883
5884 * lib/Makefile.am: Use ## for copyright notice.
5885
5886 * scripts/Makefile.am: Use ## on copyright notice.
5887
5888 * doc/Makefile.am:
5889 ($(srcdir)/tar.info, tar.dvi): We now use texinfo 4.0.
5890
5891 1999-12-05 Paul Eggert <eggert@twinsun.com>
5892
5893 * doc/ChangeLog, lib/ChangeLog, scripts/ChangeLog,
5894 src/ChangeLog, tests/ChangeLog: Remove these files.
5895 * ChangeLog.1: New file, incorporating the above files, plus old
5896 ChangeLog entries.
5897 * Makefile.am (EXTRA_DIST): Add ChangeLog.1.
5898
5899 1999-12-05 Dale Worley <worley@ariadne.com>
5900
5901 * src/compare.c (<utime.h>, struct utimbuf): Add.
5902 (diff_archive): Restore access times if --atime.
5903 * doc/tar.texi: Explain that --atime also preserves modification time.
5904
5905 1999-12-04 Gerhard Poul <gpoul@gnu.org>
5906
5907 * ABOUT-NLS: Update to latest version from ftp.gnu.org.
5908 * BACKLOG, TODO: Remove.
5909 * Makefile.am (all-local, BABYL, dist-zoo, id, ID): Remove.
5910 * README: Bring up to date.
5911
5912 1999-12-03 Paul Eggert <eggert@twinsun.com>
5913
5914 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.15.
5915
5916 * src/compare.c (diff_archive):
5917 Do not set errno to EPIPE; we no longer use perror.
5918
5919 * src/create.c (dump_file):
5920 If a parent directory said that a file should be there but it is
5921 absent, diagnose it as being removed in the meantime.
5922 Do not pass meaningless errno to ERROR when reporting that the
5923 file changed as we read it.
5924 Report that a file changed if its ctime changes; this is more
5925 sensitive than mtime+size, and more accurate.
5926
5927 * src/incremen.c (enum children): New type.
5928 (struct directory): Change old char allnew member to new enum children
5929 children member.
5930 All uses changed.
5931 (get_directory_contents): When doing an incremental dump that does
5932 not cross filesystem boundaries, dump the mount points, even though
5933 they are in a different filesystem. This is for convenience when
5934 restoring, and for consistency with non-incremental dumps.
5935 This requires a 3-way flag for keeping track of which children we want,
5936 so we use enum children rather than boolean.
5937
5938 * src/open3.c (modes): Remove.
5939 (open3): Remove unportable assumptions about flag encodings.
5940 Use `stat' instead of `access' for testing file existence,
5941 to avoid problems with setuid programs.
5942
5943 * src/names.c (name_next): If file names are given both in the
5944 command line (e.g. via -C) and in a file (via -T), do not
5945 ignore the command-line names.
5946
5947 * m4/uintmax_t.m4: Backport to autoconf 2.13.
5948
5949 * doc/tar.texi: Clarify getdate authorship.
5950
5951 1999-11-23 Paul Eggert <eggert@twinsun.com>
5952
5953 * lib/Makefile.am (DISTCLEANFILES): New macro.
5954
5955 * configure.in (tar_fnmatch_hin):
5956 Remove; it runs afoul of a bug in autoconf 2.13.
5957 Instead, always link fnmatch.h to some file, even if it's a throwaway.
5958
5959 1999-11-19 Paul Eggert <eggert@twinsun.com>
5960
5961 * m4/largefile.m4: Update serial.
5962
5963 1999-11-18 Paul Eggert <eggert@twinsun.com>
5964
5965 * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a bug in
5966 the QNX shell, which doesn't propagate exit status of failed
5967 commands inside shell assignments.
5968
5969 1999-11-07 Paul Eggert <eggert@twinsun.com>
5970
5971 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.14.
5972
5973 * configure.in (AC_PREREQ): Bump to 2.13.
5974 (ALL_LINGUAS): Add pt_BR, ja.
5975 (AC_FUNC_FNMATCH): Remove lib/funmatch.h before invoking, not after.
5976 (tar_cv_path_RSH): Prefer a non-symlink rsh to a symlink one,
5977 for AIX crossbuilds.
5978
5979 * doc/tar.texi: New node create options for --ignore-failed-read.
5980 Remove unused version control symbols.
5981 Modernize texinfo usage.
5982
5983 * src/tar.c (usage): Add examples.
5984
5985 * m4/fnmatch.m4 (AC_FUNC_FNMATCH):
5986 Include fnmatch.h when testing fnmatch.
5987
5988 * src/common.h (collect_and_sort_names): New decl.
5989
5990 * src/list.c (from_header):
5991 Handle 32-bit two's complement negative time stamps
5992 even if the leading octal digit is 2 or 3.
5993
5994 * src/extract.c (set_stat): Remove duplicate code.
5995
5996 * src/create.c (to_chars): Remove trailing newline from warning.
5997 (dump_file): Ignore doors.
5998 (finish_header): Report block numbers with origin 0, not origin 1.
5999
6000 * src/rmt.c: Include getopt.h.
6001 (long_opts): New constant.
6002 (usage): New function.
6003 (main): Implement --help and --version.
6004 Output usage message if arguments are bad.
6005
6006 1999-10-10 Paul Eggert <eggert@twinsun.com>
6007
6008 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.13.
6009
6010 * README: Remove --with-dmalloc.
6011 Add --disable-largefile.
6012 Remove old NeXT dirent problems, or AIX valloc problems.
6013 Remove old union wait advice, and old %lld advice.
6014 Remove advice about FreeBSD 2.1.7, ISC 4.1mu, Ultrix `make'.
6015
6016 * doc/tar.texi: Clarify documentation for portable file names.
6017
6018 * configure.in (AM_WITH_DMALLOC): Remove.
6019 (ALL_LINGUAS): Add ja.
6020
6021 * src/tar.c (decode_options):
6022 Invalid dates are now treated as (time_t) -1.
6023 Redo version message to conform to GNU standards.
6024
6025 * src/create.c (dump_file):
6026 Fix typo: last two args to dump_file were interchanged.
6027 * src/update.c (update_archive): Likewise.
6028
6029 * src/common.h (tartime): New decl.
6030
6031 * src/list.c (tartime): Now extern.
6032 (read_and): Invalid headers cause errors, not warnings.
6033
6034 1999-10-03 Paul Eggert <eggert@twinsun.com>
6035
6036 * lib/getdate.y (__attribute__):
6037 Don't use if GCC claims to be before 2.8; this is
6038 needed for OPENStep 4.2 cc. Also, don't use if strict ANSI.
6039
6040 1999-09-25 Paul Eggert <eggert@twinsun.com>
6041
6042 * lib/fnmatch.c, lib/fnmatch.hin: Merge changes from latest glibc.
6043 * lib/getopt.c, lib/getopt.h, lib/getopt1.c: Likewise.
6044
6045 * tests/incremen.sh: Add yet another sleep.
6046
6047 1999-09-24 Paul Eggert <eggert@twinsun.com>
6048
6049 * NEWS: A read error now causes a nonzero exit status.
6050
6051 * src/create.c (to_chars): Fix base-256 output.
6052
6053 * src/buffer.c (write_error):
6054 Read error is an error, not just a warning.
6055
6056 1999-09-24 Paul Eggert <eggert@twinsun.com>
6057
6058 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.12.
6059
6060 * src/tar.c (<time.h>): Include.
6061 (time): Declare if not defined.
6062 (confirm): Don't read past EOF.
6063 (long_options, usage): Add --no-same-owner, --no-same-permissions.
6064 (main): Use clock_gettime if available.
6065
6066 * tests/Makefile.am (TESTS): Add incremen.sh
6067 (INCLUDES): Add -I../lib, for fnmatch.h.
6068
6069 * src/update.c (update_archive):
6070 Remove call to name_expand; had no effect.
6071 Use chdir_do to change into directory.
6072 Use deref_stat instead of stat.
6073 Use add_avoided_name to mark names to be avoided; the old method of
6074 setting a bit with the name caused all descendants of that name to
6075 be avoided, in some circumstances.
6076
6077 * tests/incremen.sh: Remove unnecessary sleeps.
6078
6079 * src/names.c (name_next): Go back to using plain chdir.
6080 (name_gather): Use chdir_arg to keep track of arguments to chdir.
6081 (addname): Likewise.
6082 (name_match): Use chdir_do to act on chdir args.
6083 (merge_sort): Moved here from incremen.c.
6084 (compare_names, add_hierarchy_to_namelist, collect_and_sort_names):
6085 Likewise.
6086 (name_expand): Remove.
6087 (name_from_list): Skip fake names.
6088 Use chdir_do to act on chdir args.
6089 (struct avoided_name): New struct.
6090 (avoided_names): New var.
6091 (add_avoided_name, is_avoided_name): New functions.
6092
6093 * src/system.h (stat, lstat): Define in terms of statx on
6094 STX_HIDDEN && !_LARGE_FILES /* AIX */ hosts.
6095 (UCHAR_MAX): New macro.
6096 (TYPE_MAXIMUM): Cast to arg type, for types narrow than int.
6097
6098 * m4/largefile.m4: Work around GCC 2.95.1 bug with HP-UX 10.20.
6099
6100 * src/incremen.c (<time.h>): Remove include; no longer used.
6101 (time): Remove decl.
6102 (time_now): Remove.
6103 (get_directory_contents): Use deref_stat.
6104 Consider a subdirectory to be all new only if
6105 listed_incremental_option or if it its timestamp is newer than the
6106 cutoff.
6107 (add_hierarchy_to_namelist, merge_sort): Move to names.c.
6108 (read_directory_file): Now extern. Do not set time_now.
6109 (write_directory_file): Renamed from write_dir_file.
6110 Use start_time instead of time_now.
6111 (compare_names, collect_and_sort_names): Move to names.c.
6112
6113 * src/mangle.c (<time.h>): Remove; not used.
6114 (time): Do not declare.
6115
6116 * src/misc.c (chdir_from_initial_wd): Remove.
6117 (deref_stat): New function.
6118 (struct wd): New struct.
6119 (wd, wds, wd_alloc): New variables.
6120 (chdir_arg, chdir_do): New function.
6121
6122 * src/compare.c (get_stat_data): Use deref_stat.
6123
6124 * src/common.h (name_expand): Remove.
6125
6126 * src/list.c (time): Declare if not defined.
6127 (base_64_digits): Moved here from create.c.
6128 (base64_map): Use UCHAR_MAX for size, not less-clear (unsigned char)
6129 -1.
6130 (read_and): Don't get time from header unless we need it now;
6131 as getting time can cause duplicate diagnostics if bogus.
6132 Remove "Hmm, " from diagnostic.
6133 Use "Skipping to next header" uniformly.
6134 (from_header): Renamed from from_chars. All uses changed.
6135 Allow different forms for unportable 2's complement numbers.
6136 Don't check for extended forms when parsing checksums.
6137 Parse base-256 output.
6138 (gid_from_header): Renamed from gid_from_chars. All uses changed.
6139 (major_from_header): Renamed from major_from_chars. All uses changed.
6140 (minor_from_header): Renamed from minor_from_chars. All uses changed.
6141 (mode_from_header): Renamed from mode_from_chars. All uses changed.
6142 (off_from_header): Renamed from off_from_chars. All uses changed.
6143 (size_from_header): Renamed from size_from_chars. All uses changed.
6144 (time_from_header): Renamed from time_from_chars. All uses changed.
6145 Warn about future timestamps.
6146 (uid_from_header): Renamed from uid_from_chars. All uses changed.
6147 (uintmax_from_header): Renamed from uintmax_from_chars.
6148 All uses changed.
6149 (tartime): New function, incorporating isotime.
6150 (isotime): Delete.
6151 (print_header): Use tartime.
6152
6153 * src/create.c (to_chars): Fix typo in decl.
6154 Don't assign through char const *.
6155 Rename name_expand back to collect_and_sort_names.
6156
6157 * src/extract.c (<time.h>): No need to include.
6158 (time): No need to declare.
6159 (now): Remove variable.
6160 (extr_init): Don't initialize `now'.
6161 Increment same_permissions_option and same_owner_option if we_are_root
6162 is nonzero; this supports the new --no-same-owner option.
6163 (set_stat): Use start_time instead of `now'.
6164
6165 * src/create.c (struct link): Remove unused linkcount member.
6166 (base_64_digits): Move to list.c.
6167 (base_8_digits): Remove.
6168 (to_octal): New function, with some of old contents of to_base.
6169 (to_base): Remove.
6170 (to_base256): New function.
6171 (to_chars): Use base 256, not base 64, for huge values.
6172 (mode_to_chars): Don't use two's complement in GNU format or POSIX
6173 format.
6174 (dump_file): Interchange last two arguments. If TOP_LEVEL is negative,
6175 it means we have an incremental dump where we don't know whether this
6176 is a top-level call.
6177 Use deref_stat instead of statx / stat / lstat.
6178 Cast result of alloca.
6179 Check for dates if 0 < top_level, not if listed_incremental_option.
6180 Move multiple-link check after directory check.
6181 Do not dump avoided names.
6182 Dump hard links to symbolic names as links, not as separate
6183 symbolic links.
6184 start_header cannot return a null pointer, so don't test for it.
6185 Likewise for find_next_block.
6186
6187 * src/buffer.c, src/common.h (<human.h>): Include.
6188 (read_error): Read error is an error, not just a warning.
6189 (print_total_written): Also print human-readable byte count, and
6190 bytes/s.
6191 (open_archive, flush_write): Use start_time, not current time.
6192 (flush_read): Report about garbage bytes ignored at end of archive,
6193 but act on non-garbage bytes (instead of ignoring them).
6194 (new_volume): Use WARN for warnings.
6195
6196 * doc/Makefile.am:
6197 ($(srcdir)/tar.info): Add -I$(srcdir) so that subdir builds work.
6198
6199 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/fnmatch.m4.
6200
6201 * m4/Makefile.am (EXTRA_DIST): Add fnmatch.m4.
6202
6203 * lib/Makefile.am (noinst_HEADERS):
6204 Rename fnmatch.h to fnmatch.hin; add human.h.
6205 (libtar_a_SOURCES): Add human.c, xstrtoul.c.
6206 (INCLUDES): Remove -I.. -I$(srcdir) -- automake adds this for us.
6207
6208 * src/Makefile.am (rmt_LDADD, tar_LDADD): New macros.
6209
6210 * lib/fnmatch.c (strchrnul):
6211 Define to __strchrnul if _LIBC, to our own replacement otherwise.
6212 Do not define if !_LIBC and if it already exists.
6213 (internal_fnmatch): Use it.
6214
6215 * configure.in (tar_LDADD): New variable, used only when linking tar.
6216 (rmt_LDADD): Similarly, for rmt.
6217 (AC_FUNC_FNMATCH): Link fnnmatch.hin to fnmatch.h if we're using our
6218 fnmatch.c; otherwise, use the system fnmatch.h.
6219
6220 * doc/tar.texi: Add --no-same-owner, --no-same-permissions.
6221 Modernize sample backup script.
6222
6223 * THANKS: Martin Goik's email address has changed.
6224
6225 * m4/fnmatch.m4: New file.
6226
6227 1999-09-03 Paul Eggert <eggert@twinsun.com>
6228
6229 * lib/lchown.h (ENOSYS): Don't use ENOMSG; it's not in NeXTStep3.3.
6230 Use EINVAL instead.
6231
6232 1999-08-29 Paul Eggert <eggert@twinsun.com>
6233
6234 * lib/getdate.y (get_date):
6235 Rename outermost local `probe' to `quarter'.
6236 Rename latter local `tm' to probe_tm.
6237 From: Jim Meyering <meyering@ascend.com>
6238 Message-ID: <uryn1vafyyc.fsf@ixi.eng.ascend.com>
6239
6240 1999-08-28 Paul Eggert <eggert@twinsun.com>
6241
6242 * lib/getdate.y (PC): New macro; use it when possible.
6243 (number): Handle `Nov 11 1996' example correctly.
6244 See Risks Digest 20.55 (1999-08-27)
6245 http://catless.ncl.ac.uk/Risks/20.55.html#subj18
6246
6247 1999-08-23 Paul Eggert <eggert@twinsun.com>
6248
6249 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.11.
6250
6251 Remove minor cases of lint from many source files: this includes
6252 unnecessary casts, uses of NULL, etc.
6253
6254 * configure.in (AC_PROG_YACC): Remove.
6255 (YACC): Always use bison.
6256 (AC_STRUCT_TIMEZONE): Add.
6257 (AC_REPLACE_FUNCS): Add strcasecmp, strncasecmp.
6258
6259 * doc/tar.texi: --bzip2 is now -I. Remove obsolete time zone info.
6260 Fix spelling.
6261
6262 * lib/Makefile.am (EXTRA_DIST): Add strcasecmp.c, strncasecmp.c.
6263 ($(srcdir)/getdate.c): Rename y.tab.c to getdate.c only if successful.
6264
6265 * lib/strcasecmp.c, lib/strncasecmp.c: New files.
6266
6267 * src/common.h (merge_sort): Remove decl; no longer exported.
6268
6269 * src/system.h (voidstar): Remove.
6270 (memcpy, memcmp): Cast args.
6271 ("xalloc.h"): Add include.
6272 (xmalloc, xrealloc): Remove decl.
6273
6274 * src/mangle.c (time): Do not declare if defined.
6275 (first_mangle, mangled_num): Remove.
6276
6277 * src/list.c (from_chars): Report out-of-range values more precisely.
6278 (off_from_chars): Do not allow negative offsets.
6279 (uid_from_chars): Allow negative uids.
6280
6281 * src/create.c (linklist): Now static.
6282 (to_chars): Fix wording of message to match from_chars.
6283
6284 * src/misc.c (merge_sort): Move to incremen.c.
6285 * src/incremen.c (merge_sort): Move here from misc.c; now static.
6286 It's too painful to make it both generic and portable.
6287 (read_directory_file): "timestamp" -> "time stamp" in messages.
6288
6289 * src/tar.c (long_options, usage, main): -y is now -I (for --bzip).
6290 (usage): Fix misspelling.
6291 (OPTION_STRING): -y is now -I.
6292 (decode_options): Use -1, not EOF, for getopt_long result.
6293 Fix typo when invoking xstrtoumax: look for LONGINT_OK, not LONG_MAX.
6294 Handle operands after any "--" argument.
6295 (main): Report any output errors.
6296
6297 * src/rmt.c (main): status is ssize_t, not long.
6298
6299 * src/names.c (name_gather): Handle trailing -C option correctly.
6300 (addname): use memcpy, not strncpy, to copy a string of known length.
6301 (name_match): Handle trailing -C option correctly.
6302 Propagate -C option to following files.
6303 (name_match, name_scan): Remove redundant matching code.
6304
6305 * src/buffer.c (open_archive): Use American spelling in diagnostic.
6306
6307 * lib/getdate.y: Major rewrite. Add copyright notice.
6308 (<stdio.h>): Include only if testing.
6309 (ISUPPER): Remove.
6310 (ISLOWER): New macro.
6311 (<string.h>): Include if HAVE_STRING_H, not USG.
6312 (bcopy): Remove.
6313 (yymaxdepth, ..., yycheck): Don't bother to redefine, since we assume
6314 bison.
6315 (EPOCH_YEAR): Renamed from EPOCH.
6316 (table): Renamed from TABLE.
6317 (meridian): Now an anonymous enum.
6318 (struct parser_control): New type.
6319 (YYLEX_PARAM, YYPARSE_PARAM, YYSTYPE): New macros.
6320 (yyInput, ..., yyRelYear): Migrated into struct parser_control.
6321 (%pure_parser): Added, so that the parser is pure.
6322 (%union): Removed; the type is now just plain int.
6323 All %type directives removed.
6324 (tLOCAL_ZONE): New %token.
6325 (month_day_table): Renamed from MonthDayTable.
6326 (gmtime, localtime, mktime, time): Declare only if not defined.
6327 (meridian_table): New table.
6328 (dst_table): New table.
6329 (units_table): renamed from UnitsTable.
6330 (relative_time_table): Renamed from OtherTable.
6331 (time_zone_table): Renamed from TimezoneTable. Modernized.
6332 (military_table): Renamed from MilitaryTable.
6333 (to_hour): Renamed from ToHour.
6334 (to_year): Renamed from ToYear.
6335 (lookup_zone): New function.
6336 (LookupWord): Renamed from lookup_word. Use lookup_zone for time
6337 zones.
6338 (yylex): Now reentrant. All callers changed.
6339 (get_date): Add support for local time zone abbreviations.
6340 Make it reentrant.
6341
6342 1999-08-20 Paul Eggert <eggert@twinsun.com>
6343
6344 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.10.
6345
6346 * src/create.c (to_chars): Generate GNU base-64 representation
6347 if we are generating an old or new GNU format tar file for a
6348 number that can't be represented with the POSIX format.
6349
6350 * configure.in (AC_CHECK_FUNCS): Add fchdir.
6351 (AM_FUNC_GETLINE): Add.
6352 (LIBOBJS): Add getline.o to workaround comment.
6353 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/getline.m4.
6354 * m4/Makefile.am (EXTRA_DIST): Add getline.m4.
6355 * lib/Makefile.am (noinst_HEADERS): Add getline.h, save-cwd.h.
6356 (libtar_a_SOURCES): Add save-cwd.c, xgetcwd.c.
6357 * lib/getline.c, lib/getline.h, lib/save-cwd.c,
6358 lib/save-cwd.h, m4/getline.m4: New files.
6359
6360 * src/misc.c (<save-cwd.h>): Include.
6361 (chdir_from_initial_wd): New function.
6362
6363 * src/names.c (name_next): Use chdir_from_initial_wd, not chdir.
6364 (name_gather): Handle `-C x -C y' correctly.
6365 Do not rely on addname to handle -C.
6366 (addname): New CHANGE_DIR parameter. All callers changed.
6367 Remove ugly calls to getcwd; no longer needed.
6368 (name_match, name_from_list): Use chdir_from_initial_wd, not chdir.
6369
6370 * src/incremen.c (listed_incremental_stream): New var.
6371 (read_directory_file): Remove arbitrary limits on file name length.
6372 Do not attempt to get the working directory; we can bypass this
6373 on fchdir hosts. Open the listed_incremental_option file for both
6374 read and write instead of opening it twice. Check for I/O errors
6375 when doing I/O to this file. Check for invalid data in the file,
6376 and report line numbers of invalid data.
6377 (write_dir_file): Likewise.
6378 (collect_and_sort_names): Use chdir_from_initial_wd, not chdir.
6379 Do not invoke write_dir_file; that's our caller's responsibility.
6380
6381 * src/list.c (max): New macro.
6382 (isotime): Now takes time_t, not time_t *. Report the decimal values
6383 of times that can't be broken down.
6384 (print_header): Don't assume that major and minor device numbers can
6385 fit into uintmax_t.
6386
6387 * src/common.h (struct name): change_dir is now char const *.
6388 (write_directory_file): Remove unused decl.
6389 (STRINGIFY_BIGINT): Assume b always points to UINTMAX_STRSIZE_BOUND
6390 chars; the old `sizeof (b)' broke when b was a pointer not an array.
6391 (chdir_from_initial_wd): New decl.
6392 (addname): New 2nd arg.
6393
6394 * THANKS: Torsten Lull -> Catrin Urbanneck
6395
6396 1999-08-18 Paul Eggert <eggert@twinsun.com>
6397
6398 * configure.in (HAVE_GETHOSTENT, HAVE_SETSOCKOPT):
6399 Don't depend on ac_cv_func variables.
6400 From Albert Chin-A-Young <china@thewrittenword.com>.
6401
6402 1999-08-18 Paul Eggert <eggert@twinsun.com>
6403
6404 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.9
6405
6406 * m4/signedchar.m4: New file.
6407 * configure.in (pe_AC_TYPE_SIGNED_CHAR): Add.
6408 * src/system.h (signed_char): New macro.
6409 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/signedchar.m4.
6410 * m4/Makefile.am (EXTRA_DIST): Add signedchar.m4.
6411
6412 * src/create.c (write_eot): Write at least two zero blocks.
6413
6414 * src/extract.c (extract_archive): Fix sparse array bug:
6415 we did not find end of array correctly.
6416
6417 * src/compare.c: (fill_in_sparse_array, diff_sparse_files):
6418 Don't assume find_next_block yields nonnull.
6419 * src/extract.c (extract_sparse_file, extract_archive): Likewise.
6420 * src/list.c (skip_extended_headers): Likewise.
6421
6422 * src/list.c (read_and, list_archive): Simplify code.
6423 (read_header): Fix computation of signed checksums on machines where
6424 char is unsigned.
6425 Do not consider a block to be zero unless all its bytes are zero,
6426 even the checksum bytes. Do not attempt to parse the checksum of
6427 a zero block. Fix memory leak with long names and links.
6428 (from_chars): Accommodate a buggy tar that outputs leading NUL
6429 if the previous field overflows.
6430
6431 * src/misc.c (quote_copy_string): Generate \177 for '\177', not
6432 \?, for portability to non-ASCII hosts.
6433
6434 1999-08-16 Paul Eggert <eggert@twinsun.com>
6435
6436 * configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.8.
6437
6438 * src/extract.c (make_directories): Do not chown intermediate
6439 directories, even if we are root.
6440
6441 * src/list.c (read_header): Fix bugs when interpreting
6442 POSIX-compliant headers that do not contain null bytes in the
6443 header or link names.
6444
6445 1999-08-14 Paul Eggert <eggert@twinsun.com>
6446
6447 * configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.7.
6448
6449 * configure.in (AC_CHECK_HEADERS): Remove sys/wait.h.
6450 (AC_HEADER_SYS_WAIT): Add.
6451 (AC_REPLACE_FUNCS): Add waitpid.
6452 (tar_cv_header_union_wait, HAVE_UNION_WAIT): Remove.
6453 * lib/waitpid.c: New file.
6454 * lib/Makefile.am (EXTRA_DIST): Add waitpid.c.
6455 * src/system.h (WCOREDUMP): Remove; no longer used.
6456 (WIFSTOPPED): Likewise.
6457 (WEXITSTATUS, WIFSIGNALED): Default to Solaris 7 versions.
6458 * src/buffer.c (child_open_for_compress): Undo previous change.
6459 (close_archive): Use waitpid, POSIX-style, instead of old BSD style.
6460 (new_volume): Likewise.
6461
6462 * src/buffer.c, src/extract.c, src/incremen.c (time):
6463 Don't declare if defined.
6464 * src/extract.c (extr_init): Remove unneeded cast around 0 arg to time.
6465 * src/incremen.c (read_directory_file):
6466 Invoke `time' the same way everyone else does.
6467 Check validity of --listed-incremental file contents a bit better.
6468 Do not worry about --after-date-option; tar.c now checks this.
6469 * src/list.c (isotime): Report ??? if localtime returns null.
6470 Don't assume years fit into four digits.
6471 Don't append trailing newline.
6472 (print_header): Report ??? if localtime returns null;
6473 Don't assume years fit into four digits.
6474
6475 * src/compare.c (diff_archive): Do not fall back on absolute name
6476 when --absolute-names is not specified.
6477
6478 * src/create.c (start_header):
6479 Include text of ignored filesystem prefix in warning.
6480 (create_archive): Check for excluded names when doing incremental
6481 pass through directory.
6482 (dump_file): Do not dump old files explicitly given on command line
6483 when using --listed-incremental. Do not strip ./ prefix from names.
6484
6485 * src/tar.c: -g now implies after_date_option = 1.
6486 -g and -N are now incompatible options.
6487
6488 * doc/tar.texi: Explain --exclude better. Don't strip leading `./'.
6489
6490 1999-08-11 Jeff Dairiki <dairiki@dairiki.org>
6491
6492 * src/list.c (read_header): Don't parse OLDGNU_FORMAT
6493 incremental headers as POSIX prefixes.
6494
6495 1999-08-11 Paul Eggert <eggert@twinsun.com>
6496
6497 * NEWS, configure.in: Version 1.13.6.
6498
6499 * configure.in (ALL_LINGUAS): Add pt_BR.
6500 * po/pt_BR.po: New file.
6501
6502 * doc/Makefile.am ($(srcdir)/tar.info, $(srcdir)/header.texi):
6503 Renamed from tar.info and header.texi; adjust actions so that
6504 they work in other directories.
6505
6506 * doc/tar.texi: Add -y and --bzip2.
6507 Patterns containing / now exclude only file names whose prefix match.
6508
6509 * lib/exclude.h (excluded_filename): New option parameter.
6510 (add_exclude_file): New ADD_FUNC parameter.
6511 (excluded_pathname): Remove decl.
6512 * lib/exclude.c (_GNU_SOURCE):
6513 Remove; no longer needed since we don't use FNM_ macros.
6514 (excluded_filename): Renamed from excluded_filename_opts.
6515 (excluded_filename, excluded_pathname): Remove.
6516 (add_exclude_file): New ADD_FUNC parameter.
6517
6518 * po/POTFILES.in: Add lib/quotearg.c.
6519
6520 * src/buffer.c (_GNU_SOURCE): Define.
6521 (<fnmatch.h>): Include unconditionally.
6522 (child_open_for_compress): Dup after closing, to avoid possible file
6523 descriptor exhaustion.
6524 (flush_write): Use FILESYSTEM_PREFIX_LEN instead of MSDOS ifdef.
6525 (flush_read): Likewise.
6526
6527 * src/common.h (LG_8, LG_64): New macros.
6528 (excluded_with_slash, excluded_without_slash): New vars.
6529 (excluded): Remove.
6530 (base_64_digits): New decl.
6531 (gid_to_chars, major_to_chars, minor_to_chars, mode_to_chars,
6532 off_to_chars, size_to_chars, time_to_chars, uid_to_chars,
6533 uintmax_to_chars,
6534 GID_TO_CHARS, MAJOR_TO_CHARS, MINOR_TO_CHARS, MODE_TO_CHARS,
6535 OFF_TO_CHARS, SIZE_TO_CHARS, TIME_TO_CHARS, UID_TO_CHARS,
6536 UINTMAX_TO_CHARS):
6537 Renamed from gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct,
6538 off_to_oct, size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct,
6539 GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT, MODE_TO_OCT, OFF_TO_OCT,
6540 SIZE_TO_OCT, TIME_TO_OCT, UID_TO_OCT, UINTMAX_TO_OCT,
6541 respectively. All definitions and uses changed.
6542 (excluded_name): New decl.
6543
6544 * src/compare.c (diff_archive):
6545 Open files with O_NONBLOCK instead of O_NDELAY.
6546
6547 * src/create.c (base_64_digits): New constant.
6548 (base_8_digits): New macro.
6549 (MAX_VAL_WITH_DIGITS): New macro.
6550 (to_base): First half of old to_oct. Support base 64 too.
6551 (to_chars): Other half of old to_oct, for 64-bit support.
6552 (GID_NOBODY, UID_NOBODY): Don't define if the headers don't.
6553 (gid_substitute, uid_substitute): Look up names dynamically if
6554 GID_NOBODY and UID_NOBODY aren't defined; use -2 if all else fails.
6555 (mode_to_chars): Renamed from mode_to_oct.
6556 Support negative values in all the _to_chars functions.
6557 (start_header): Use FILESYSTEM_PREFIX_LEN instead of MSDOS ifdef.
6558 Abort if archive format is DEFAULT_FORMAT when it shouldn't be.
6559 (dump_file): Inspect entire pathname, not just new file name
6560 component, when deciding whether to exclude it.
6561
6562 * src/extract.c (extract_archive):
6563 Open files with O_NONBLOCK instead of O_NDELAY.
6564
6565 * src/incremen.c (get_directory_contents):
6566 Inspect entire pathname, not just new file name
6567 component, when deciding whether to exclude it.
6568
6569 * src/list.c (<fnmatch.h>): Do not include.
6570 (from_chars): Renamed from from_oct. New parameter specifying
6571 the negative of the minimum allowed value. Support negative
6572 and base-64 values.
6573 (base64_map): New var.
6574 (base64_init): New function.
6575 (print_header): Output numeric uids and gids if numeric_owner_option.
6576
6577 * src/misc.c (quote_copy_string): Use LG_8 instead of constants.
6578
6579 * src/names.c (_GNU_SOURCE): Define.
6580 (<fnmatch.h>): Include unconditionally.
6581 (excluded_name): New function, taking over duties of excluded_pathname.
6582 All uses changed.
6583
6584 * src/rmt.c (decode_oflag): New function.
6585 (main): Use it to support symbolic open flags.
6586
6587 * src/rtapelib.c (encode_oflag): New function.
6588 (rmt_open__): Do not allow newlines in the path.
6589 Propagate errno correctly.
6590 Decode symbolic open flags, if present.
6591
6592 * src/system.h (FILESYSTEM_PREFIX_LEN, ISSLASH, O_ACCMODE, O_NONBLOCK):
6593 New macros.
6594
6595 * src/tar.c: (long_options, usage, OPTION_STRING, decode_options):
6596 New -y or --bzip2 option.
6597 (add_filtered_exclude): New function.
6598 (decode_options): Put excluded patterns with / into
6599 excluded_with_slash, and without / into excluded_without_slash.
6600 Compare newer_mtime_option to its new initial value
6601 TYPE_MINIMUM (time_t) when deciding whether more than one
6602 threshold date was specified.
6603
6604 1999-07-20 Paul Eggert <eggert@twinsun.com>
6605
6606 * NEWS, configure.in: Version 1.13.5.
6607
6608 * src/common.h (FATAL_ERROR): Invoke apply_delayed_set_stat
6609 before exiting.
6610 * src/buffer.c (new_volume): Likewise.
6611 * src/incremen.c (read_directory_file): Likewise.
6612 * src/tar.c (decode_options):
6613 ERROR ((TAREXIT_FAILURE, ... -> FATAL_ERROR ((0,
6614 for consistency.
6615
6616 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.4.
6617 * configure.in (AC_CHECK_FUNCS): Add lstat, readlink, symlink.
6618
6619 * src/system.h (lstat): Define only if !HAVE_LSTAT && !defined lstat.
6620 (S_ISMPB, S_ISMPC, S_ISNWK): Remove unused macros.
6621 (S_ISBLK, S_ISCHR, S_ISCTG, S_ISFIFO, S_ISLNK, S_ISSOCK):
6622 Define to 0 if the corresponding S_IF* macro is not defined.
6623 (mkfifo): Do not define if already defined, or if S_IFIFO
6624 is not defined.
6625
6626 * src/compare.c (diff_archive): Use HAVE_READLINK, not
6627 S_ISLNK, to determine whether to invoke readlink.
6628 * src/create.c (dump_file): Likewise.
6629
6630 * src/extract.c (set_mode):
6631 Do not chmod unless we are root or the -p option was given;
6632 this matches historical practice.
6633 (unlink_destination): New function, which checks for unlink failures.
6634 (maybe_recoverable): Stay quiet if -U.
6635 (extract_archive): Use O_EXCL if unlink_first_option.
6636 Report unlink failures.
6637 Use HAVE_SYMLINK, not S_ISLNK, to determine whether symlink exists.
6638 Use HAVE_MKFIFO || defined mkfifo, not S_ISFIFO, to determine whether
6639 mkfifo exists.
6640
6641 * src/incremen.c (get_directory_contents): Depend on
6642 S_ISHIDDEN, not AIX, to determine whether to invoke S_ISHIDDEN.
6643
6644 * src/list.c: Remove S_IS* ifdefs.
6645 * src/misc.c (maybe_backup_file): Likewise.
6646
6647 * src/misc.c (maybe_backup_file):
6648 "Virtual memory exhausted" -> "Memory exhausted",
6649 to conform to the other places this message is issued.
6650
6651 * src/mangle.c (extract_mangle):
6652 Replace #ifdef S_ISLNK with #ifdef HAVE_SYMLINK.
6653
6654 * src/rtapelib.c (rmt_open__):
6655 Remove typo that caused us to omit the first char
6656 of the basename.
6657
6658 1999-07-16 Paul Eggert <eggert@twinsun.com>
6659
6660 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.13.3.
6661
6662 * doc/tar.texi: A path name is excluded if any of its file name
6663 components matches an excluded pattern, even if the path name was
6664 specified on the command line.
6665 * src/create.c (create_archive): Likewise.
6666 * src/list.c (read_and): Likewise.
6667 * src/update.c (update_archive): Likewise.
6668 * lib/exclude.h (excluded_pathname): New decl.
6669 * lib/exclude.c (_GNU_SOURCE): Define.
6670 (FILESYSTEM_PREFIX_LEN, ISSLASH): New macros.
6671 (excluded_filename_opts): New function.
6672 (excluded_pathname): New function.
6673
6674 * lib/Makefile.am (EXTRA_DIST):
6675 xstrtol.c moved here from libtar_a_SOURCES.
6676 (libtar_a_SOURCES): Move xstrtol.c to EXTRA_DIST.
6677 Remove xstrtoul.c; no longer needed.
6678 * lib/xstrtol.c: Remove.
6679
6680 * src/tar.c (decode_options):
6681 Set newer_time_option to TYPE_MINIMUM, so that
6682 negative timestamps are handled correctly.
6683 Replace invocations of xstrtol and xstrtoul with xstrtoumax, for
6684 uniformity (and so that we don't need to have the other fns).
6685 (main): Remove call to init_total_written; no longer needed.
6686
6687 * configure.in (AC_CHECK_SIZEOF): Remove no-longer-needed
6688 checks for unsigned long and long long.
6689 * src/arith.c: Remove.
6690 * src/Makefile.am (tar_SOURCES): Remove arith.c.
6691 * po/POTFILES.in: Remove src/arith.c.
6692 * src/arith.h: Use double, to simplify configuration gotchas.
6693 (tarlong): Now double.
6694 (TARLONG_FORMAT): New macro.
6695 (BITS_PER_BYTE, BITS_PER_TARLONG, SUPERDIGIT, BITS_PER_SUPERDIGIT,
6696 LONGS_PER_TARLONG, SIZEOF_TARLONG, struct tarlong,
6697 zerop_tarlong_helper, lessp_tarlong_helper, clear_tarlong_helper,
6698 add_to_tarlong_helper, mult_tarlong_helper, print_tarlong_helper,
6699 zerop_tarlong, lessp_tarlong, clear_tarlong, add_to_tarlong,
6700 mult_tarlong, print_tarlong): Remove. All callers replaced with
6701 arithmetic ops.
6702
6703 * src/common.h (init_total_written): Remove decl.
6704
6705 * src/buffer.c (total_written):
6706 Remove; replaced with prev_written + bytes_written.
6707 (prev_written): New var.
6708 (init_total_written): Remove.
6709 (print_total_written): Use TARLONG_FORMAT instead of print_tarlong.
6710
6711 * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG):
6712 Make sure that we can shift, multiply
6713 and divide unsigned long long values; Ultrix cc can't do it.
6714
6715 * lib/modechange.c (mode_compile): Use uintmax_t, not unsigned long.
6716 Check for any unknown bits, not just unknown bits left of the leftmost
6717 known bit.
6718
6719 * lib/quotearg.c (quotearg_buffer):
6720 Don't quote spaces if C quoting style.
6721 * src/list.c (from_oct):
6722 Use C quoting style for error; omit trailing NULs.
6723
6724 1999-07-14 Paul Eggert <eggert@twinsun.com>
6725
6726 * configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.2.
6727
6728 * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
6729 <inttypes.h> defines strtoumax as a macro (and not as a function).
6730 HP-UX 10.20 does this.
6731
6732 * src/tar.c (usage): tar-bugs@gnu.org -> bug-tar@gnu.org
6733 * PORTS, README, TODO, doc/tar.texi: Likewise.
6734
6735 1999-07-12 Paul Eggert <eggert@twinsun.com>
6736
6737 * configure.in (AM_INIT_AUTOMAKE): Version 1.13.1.
6738 (LIBOBJS): Add mktime.o to automake 1.4 bug workaround.
6739
6740 * src/list.c (decode_header):
6741 Do not assume that S_IFBLK and S_IFCHR are defined.
6742
6743 * src/create.c (start_header): Do not assume S_IFMT is defined.
6744 (dump_file): Remove unnecessary check for screwy apollo lossage.
6745 Do not assume S_IFBLK and S_IFCHR are defined.
6746
6747 * src/extract.c (extract_archive):
6748 Test whether S_IFCHR and S_IFBLK are nonzero,
6749 not whether they are defined, for consistency with other tests.
6750
6751 * src/buffer.c (is_regular_file):
6752 Don't succeed on files that we can't access due to
6753 permissions problems.
6754 (open_archive): Fix wording on fatal error message.
6755 Don't bother to stat /dev/null if the archive is not a character
6756 special device.
6757
6758 * src/compare.c (process_rawdata, diff_sparse_files, diff_archive):
6759 Report an error, not a warning, for I/O errors.
6760 (process_rawdata, process_dumpdir, diff_sparse_files):
6761 Change ungrammatical "Data differs" to "Contents differ".
6762 (get_stat_data): Find hidden files on AIX.
6763 Accept file name as argument; all uses changed.
6764 (get_stat_data, diff_archive): Use system error message for
6765 nonexistent files rather than rolling our own.
6766 (diff_archive): Unknown file types are errors, not warnings.
6767 Normalize spelling of message to "File type differs".
6768 Use get_stat_data to get link status, for consistency.
6769 Do not inspect st_rdev for fifos.
6770 Do not assume st_mode values contain only file types and mode bits.
6771 Check for mode changes and device number changes separately.
6772
6773 * src/update.c (append_file):
6774 Open the file before statting it, to avoid a race.
6775 Complain about file shrinkage only when we reach EOF.
6776
6777 1999-07-08 Paul Eggert <eggert@twinsun.com>
6778
6779 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13 released.
6780
6781 * configure.in (AC_EXEEXT): Add.
6782
6783 * lib/Makefile.am (noinst_HEADERS):
6784 Add basename.h, exclude.h. Remove full-write.h.
6785 (libtar_a_SOURCES): Add exclude.c.
6786
6787 * lib/basename.h, lib/exclude.c, lib/exclude.h, lib/safe-read.h:
6788 New files.
6789 * lib/full-write.c: Include safe-read.h instead of full-write.h.
6790 * lib/safe-read.h (safe_read): New decl.
6791 * src/rmt.c: Include safe-read.h.
6792 * src/rtapelib.c: Include basename.h, save-read.h.
6793 (rmt_open__): Use base_name to compute base name.
6794
6795 * src/common.h:
6796 Include basename.h, exclude.h; don't include full-write.h.
6797 (exclude_option): Remove decl.
6798 (excluded): New decl.
6799 (add_exclude, add_exclude_file, check_exclude): Remove decls.
6800
6801 * src/list.c (read_and):
6802 Use excluded_filename instead of check_exclude.
6803 Check base name of incoming file name, not entire file name, when
6804 deciding whether to exclude it.
6805
6806 * src/create.c (finish_sparse_file):
6807 Use excluded_filename instead of check_exclude.
6808 Don't bother to stat excluded file names.
6809 * src/incremen.c (get_directory_contents): Likewise.
6810
6811 * src/names.c (exclude_pool, exclude_pool_size,
6812 allocated_exclude_pool_size, simple_exclude_array,
6813 simple_excludes, allocated_simple_excludes,
6814 pattern_exclude_array, pattern_excludes,
6815 allocated_pattern_excludes, add_exclude, add_exclude_file,
6816 check_exclude):
6817 Remove; now done in ../lib/exclude.c.
6818
6819 * src/tar.c (decode_options): Initialize `excluded'.
6820 Use new add_exclude_file and add_exclude functions.
6821
6822 1999-07-05 Paul Eggert <eggert@twinsun.com>
6823
6824 * m4/gettext.m4: Use changequote rather than [[ ]].
6825
6826 * lib/safe-read.c: Renamed from lib/full-read.c.
6827 (safe_read): Renamed from full_read. All uses changed.
6828 * lib/safe-read.h, lib/full-write.h: New files.
6829 * lib/Makefile.am (noinst_HEADERS): Add full-write.h, safe-read.h.
6830 (libtar_a_SOURCES): Rename full-read.c to safe-read.c.
6831 * lib/full-write.c: Include full-write.h.
6832 * src/common.h: Include full-write.h, safe-read.h.
6833 * src/system.h: (full_read, full_write): Remove decls.
6834
6835 * src/Makefile.am (datadir): New var; needed for Solaris gettext.
6836
6837 * src/system.h (bindtextdomain, textdomain): undef before
6838 defining, to avoid preprocessor warnings with --disable-nls
6839 on hosts whose locale.h includes libintl.h.
6840
6841 * lib/xstrtol.c (__strtol): Remove decl; it doesn't work if __strtol
6842 expands to a macro, which occurs in HP-UX 10.20 with strtoumax.
6843 (strtol, strtoul): New decls (for pre-ANSI hosts), to replace
6844 the above decl.
6845
6846 1999-07-02 Paul Eggert <eggert@twinsun.com>
6847
6848 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/mktime.m4.
6849 * m4/mktime.m4: New file.
6850 * m4/Makefile.am.in, m4/README: Remove these files.
6851 * m4/Makefile.am (EXTRA_DIST): Add mktime.m4;
6852 remove README, Makefile.am.in.
6853 (Makefile.am): Remove rule; it didn't work in BSD/OS 4.0.
6854 * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Invoke AC_FUNC_MKTIME,
6855 not AM_FUNC_MKTIME.
6856
6857 * src/tar.c: Include signal.h.
6858 (SIGCHLD): Define to SIGCLD if SIGCLD is defined but SIGCHLD is not.
6859 (main): Ensure SIGCHLD is not ignored.
6860
6861 (BACKUP_OPTION, DELETE_OPTION, EXCLUDE_OPTION, GROUP_OPTION,
6862 MODE_OPTION, NEWER_MTIME_OPTION, NO_RECURSE_OPTION, NULL_OPTION,
6863 OWNER_OPTION, POSIX_OPTION, PRESERVE_OPTION, RECORD_SIZE_OPTION,
6864 RSH_COMMAND_OPTION, SUFFIX_OPTION, USE_COMPRESS_PROGRAM_OPTION,
6865 VOLNO_FILE_OPTION, OBSOLETE_ABSOLUTE_NAMES,
6866 OBSOLETE_BLOCK_COMPRESS, OBSOLETE_BLOCKING_FACTOR,
6867 OBSOLETE_BLOCK_NUMBER, OBSOLETE_READ_FULL_RECORDS, OBSOLETE_TOUCH,
6868 OBSOLETE_VERSION_CONTROL): Make sure they can't be valid chars, so
6869 they don't overlap with char codes. Use an enum instead of a lot
6870 of #defines.
6871
6872 * src/system.h (ISASCII): Remove.
6873 (CTYPE_DOMAIN, ISDIGIT, ISODIGIT, ISPRINT, ISSPACE, S_ISUID,
6874 S_ISGID, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP, S_IWGRP, S_IXGRP,
6875 S_IROTH, S_IWOTH, S_IXOTH, MODE_WXUSR, MODE_R, MODE_RW,
6876 MODE_RWX, MODE_ALL, SEEK_SET, SEEK_CUR, SEEK_END, CHAR_MAX,
6877 LONG_MAX): New macros.
6878
6879 * src/incremen.c (ISDIGIT, ISSPACE): Remove; now in system.h.
6880 (read_directory_file): Cast ISSPACE arg to unsigned char.
6881 * src/misc.c (ISPRINT): Remove; now in system.h.
6882 (remove_any_file): Add brackets to pacify gcc -Wall.
6883 * src/list.c: Don't include <ctype.h>; system.h already does this.
6884 (ISODIGIT, ISSPACE): Remove; now in system.h.
6885 (decode_header): No need to AND mode with 07777; MODE_FROM_OCT
6886 does this now.
6887 (from_oct): Cast ISSPACE arg to unsigned char.
6888
6889 * src/create.c (mode_to_oct): Translate modes from internal to
6890 external form.
6891 * src/list.c (mode_from_oct): Translate modes from external to
6892 internal form. Do not complain about unrecognized mode bits.
6893 * src/common.h (TSUID, TSGID, TSVTX, TUREAD, TUWRITE, TUEXEC,
6894 TGREAD, TGWRITE, TGEXEC, TOREAD, TOWRITE, TOEXEC): Remove undefs.
6895
6896 * src/extract.c: (extr_init, make_directories, extract_archive):
6897 Do not assume mode bits have traditional Unix values.
6898 * src/list.c (decode_mode): Likewise.
6899 * src/create.c (start_header, dump_file): Likewise.
6900 * src/buffer.c (child_open_for_compress,
6901 child_open_for_uncompress, open_archive, (close_archive): Likewise.
6902 * src/compare.c (diff_archive): Likewise.
6903
6904 * src/extract.c (set_mode): Use %04 not %0.4 format.
6905 (extract_sparse_file): Do not use data_block uninitialized.
6906 Check for lseek failures.
6907
6908 * src/rtapelib.c (rmt_lseek__):
6909 Convert lseek whence values to portable integers on the wire.
6910 * src/rmt.c (main): Likewise. Check for whence values out of range.
6911
6912 * src/create.c (finish_sparse_file): Use lseek whence macros
6913 instead of integers.
6914 * src/buffer.c (backspace_output): Likewise.
6915 * src/compare.c (diff_archive, verify_volume): Likewise.
6916 * src/delete.c (move_archive): Likewise.
6917 * src/extract.c (extract_sparse_file): Likewise.
6918
6919 * src/create.c (dump_file): Do not invoke finish_sparse_file
6920 on a negative file descriptor.
6921
6922 * src/buffer.c: Add braces to pacify gcc -Wall.
6923
6924 * src/compare.c (diff_sparse_files): Report lseek errors.
6925
6926 * configure.in (ALL_LINGUAS): Add cs, es, ru.
6927
6928 * PORTS, TODO: gnu.ai.mit.edu -> gnu.org
6929
6930 * src/arith.c, src/buffer.c (new_volume): Don't put ^G in
6931 message to be internationalized; \a doesn't work with msgfmt.
6932
6933 * src/tar.c (long_options, main, usage, OPTION_STRING):
6934 Remove -E or --ending-file.
6935 * src/list.c (read_and): Likewise.
6936 * src/common.h (ending_file_option): Likewise.
6937 * src/buffer.c (close_archive): Likewise.
6938
6939 * tests/after: Don't run two commands together in a pipeline,
6940 as some old shells mishandle pipeline exit status.
6941
6942 1999-06-28 Paul Eggert <eggert@twinsun.com>
6943
6944 * configure.in (AM_INIT_AUTOMAKE): version 1.12.64015.
6945 * NEWS: Describe changes since 1.12.
6946 * README: Update bug reporting address; move paxutils ref to NEWS.
6947
6948 Handle EINTR correctly.
6949 * lib/Makefile.am (libtar_a_SOURCES): Add full-read.c, full-write.c.
6950 * lib/full-read.c, lib/full-write.c: New files.
6951 * src/buffer.c (child_open_for_compress, child_open_for_uncompress):
6952 Prefer full_read to read and full_write to write.
6953 * src/compare.c (process_rawdata, diff_sparse_files): Likewise.
6954 * src/create.c (deal_with_sparse, finish_sparse_file, dump_file):
6955 Likewise.
6956 * src/extract.c (extract_sparse_file): Likewise.
6957 * src/rmt.c (get_string, main, report_error_message,
6958 report_numbered_error): Likewise.
6959 * src/rmt.h (rmtread, rmtwrite): Likewise.
6960 * src/rtapelib.c (do_command, get_status_string, rmt_read__,
6961 rmt_write__, rmt_ioctl__): Likewise.
6962 * src/update.c (append_file): Likewise.
6963 * src/system.h (full_read, full_write): New decls.
6964
6965 * po/POTFILES.in: Add lib/argmatch.c, lib/error.c lib/getopt.c,
6966 lib/xmalloc.c, src/arith.c, src/misc.c.
6967
6968 * src/system.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
6969 New macros. All uses of STDIN and STDOUT changed.
6970 * src/rmt.c (prepare_record_buffer, main): Use STDIN_FILENO
6971 instead of 0 and STDOUT_FILENO instead of 1.
6972 * src/rtapelib.c (_rmt_rexec): Use STDIN_FILENO and STDOUT_FILENO
6973 instead of fileno (stdin) and fileno (stdout) or 0 and 1.
6974
6975 * src/rmt.c (private_strerror): Avoid const. Translate results.
6976
6977 * tests/Makefile.am (TESTS): Remove incremen.sh; it doesn't work
6978 in the presence of NFS clock skew.
6979
6980 1999-06-25 Paul Eggert <eggert@twinsun.com>
6981
6982 * configure.in (AM_INIT_AUTOMAKE): version 1.12.64014.
6983
6984 * src/buffer.c (write_archive_buffer): New function.
6985 (child_open_for_compress, flush_write, flush_read): Use it to write
6986 buffers.
6987 (open_archive): Report error if fstat of archive fails.
6988 Improve efficiency of check for /dev/null.
6989 Also, fix some corner cases with remote archives and /dev/null checking.
6990 (close_archive): Test for input fifo only if not remote.
6991 Truncate output archive only if it's not remote.
6992
6993 * src/misc.c (remove_any_file):
6994 Don't terminate if you see . or ..; just skip them.
6995
6996 1999-06-18 Paul Eggert <eggert@twinsun.com>
6997
6998 * configure.in (AM_INIT_AUTOMAKE): version 1.12.64013.
6999
7000 Output sizes using a format that's more compatible with
7001 traditional tar (and with GNU Emacs).
7002 * src/common.h (GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT,
7003 MODE_TO_OCT, SIZE_TO_OCT, UID_TO_OCT, UINTMAX_TO_OCT):
7004 Don't subtract 1 from size.
7005 * src/create.c (to_oct): Prepend leading zeros, not spaces.
7006 Output a trailing NUL unless the value won't fit without it.
7007 (finish_header): No need to append NUL to chksum, now that
7008 to_oct is doing it.
7009
7010 1999-06-16 Paul Eggert <eggert@twinsun.com>
7011
7012 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64012.
7013
7014 * src/Makefile.am (LDADD): Link libtar.a after @INTLLIBS@, since
7015 @INTLLIBS@ might invoke rpl_realloc.
7016
7017 * src/tar.c (backup_type): Remove decl; backupfile.h now has it.
7018 (intconv): Remove; use xstrto* fns instead.
7019 ("xstrtol.h"): Include.
7020 (check_decimal): Remove.
7021 (long_options, usage, OPTION_STRING, decode_options):
7022 Remove -y, --bzip2, --unbzip2.
7023 (decode_options): Use xget_version instead of get_version.
7024 Check for overflow with -b and -L and RECORD_SIZE_OPTION.
7025 Replace invocations of check_decimal with xstrtoumax.
7026
7027 * tests/preset.in (echo_n, echo_c): Remove.
7028
7029 * tests/after: Don't rely on $echo_c and $echo_n.
7030
7031 * lib/addext.c, lib/dirname.c, lib/lchown.c, lib/lchown.h,
7032 lib/malloc.c, lib/mktime.c, lib/realloc.c, lib/strtol.c, lib/strtoul.c,
7033 lib/strtoull.c, lib/strtoumax.c, lib/utime.c, lib/xstrtol.c,
7034 lib/xstrtol.h, lib/xstrtoul.c, lib/xstrtoumax.c,
7035 m4/Makefile.am.in, m4/README, m4/ccstdc.m4, m4/d-ino.m4,
7036 m4/gettext.m4, m4/inttypes_h.m4, m4/isc-posix.m4,
7037 m4/jm-mktime.m4, m4/largefile.m4, m4/lcmessage.m4,
7038 m4/malloc.m4, m4/progtest.m4, m4/realloc.m4, m4/uintmax_t.m4,
7039 m4/ulonglong.m4, m4/utimbuf.m4, m4/utime.m4, m4/utimes.m4,
7040 m4/xstrtoumax.m4: New files.
7041
7042 * configure.in(fp_PROG_ECHO): Remove; no longer needed.
7043 (AC_SYS_LARGEFILE): Renamed from AC_LFS.
7044 (jm_AC_HEADER_INTTYPES_H): Replaces inline code.
7045 (jm_STRUCT_DIRENT_D_INO, jm_AC_TYPE_UINTMAX_T, jm_AC_PREREQ_XSTRTOUMAX): Add.
7046 (AC_CHECK_FUNCS): Remove lchown.
7047 (AC_REPLACE_FUNCS): Remove basename, dirname.
7048 Add lchown, strtol, strtoul.
7049 (jm_FUNC_MKTIME): Add.
7050 (LIBOBJS): Replace .o with $U.o, so that the .o files in LIBOBJS
7051 are also built via the ANSI2KNR-filtering rules.
7052 Use a no-op line to work around bug in automake 1.4 with malloc and
7053 realloc.
7054 (AC_OUTPUT): Add m4/Makefile.
7055
7056 * lib/Makefile.am (EXTRA_DIST):
7057 Add lchown.c, malloc.c, mktime.c, realloc.c,
7058 strtol.c, strtoul.c, strtoull.c, strtoumax.c, utime.c.
7059 (noinst_HEADERS): Add lchown.h, modechange.h, xstrtol.h.
7060 (libtar_a_SOURCES): Add addext.c, basename.c, xstrtol.c,
7061 xstrtoul.c, xstrtoumax.c. Remove getversion.c.
7062 ($(srcdir)/getdate.c:): Remove `expect conflicts' line.
7063
7064 * src/system.h (uintmax_t): Don't declare; configure now does this.
7065
7066 * src/common.h (backup_type): New decl.
7067 * src/common.h, src/misc.c, src/tar.c:
7068 Move include of backupfile.h to common.h.
7069
7070 * src/misc.c (maybe_backup_file):
7071 Pass backup_type to find_backup_file_name.
7072
7073 * src/list.c (print_header): Change sizes of uform and gform from 11 to
7074 UINTMAX_STRSIZE_BOUND.
7075
7076 * doc/tar.texi: Remove --bzip2.
7077 Fix @xref typos reported by latest makeinfo.
7078
7079 * Makefile.am (ACLOCAL_AMFLAGS): New macro.
7080 (SUBDIRS): Add m4.
7081 (M4DIR, ACINCLUDE_INPUTS): New macros.
7082 ($(srcdir)/acinclude.m4): New rule.
7083
7084 * acconfig.h (ENABLE_NLS, HAVE_CATGETS, HAVE_GETTEXT,
7085 HAVE_INTTYPES_H, HAVE_LC_MESSAGES, HAVE_STPCPY): Remve #undefs;
7086 now generated automatically by autoconf.
7087
7088 1999-05-15 Paul Eggert <eggert@twinsun.com>
7089
7090 * doc/tar.texi: Remove -y.
7091
7092 1999-04-09 Paul Eggert <eggert@twinsun.com>
7093
7094 * src/system.h (INT_STRLEN_BOUND): Fix off-by-factor-of-10 typo
7095 (we were allocating too much storage).
7096 (uintmax_t): Don't declare; configure now does this.
7097
7098 * ABOUT-NLS: Update to gettext 0.10.35 edition.
7099
7100 1999-03-22 Paul Eggert <eggert@twinsun.com>
7101
7102 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64010
7103
7104 * acinclude.m4 (AC_LFS_FLAGS):
7105 Don't use -mabi=n32 with GCC on IRIX 6.2; it's the default.
7106 (AC_LFS): -n32, -o32, and -n64 are CPPFLAGS, not CFLAGS.
7107 (jm_FUNC_MALLOC, jm_FUNC_REALLOC): New macros.
7108
7109 * configure.in (jm_FUNC_MALLOC, jm_FUNC_REALLOC):
7110 New macros; needed for latest GNU xmalloc.c.
7111
7112 * Makefile.am (noinst_HEADERS): Add quotearg.h, xalloc.h.
7113 (libtar_a_SOURCES): Add quotearg.c.
7114 * list.c: Include <quotearg.h>.
7115 (from_oct): Add forward decl.
7116 (read_header): Return HEADER_FAILURE if we can't parse the checksum.
7117 (from_oct): Report an error only if TYPE is nonzero.
7118 Quote any funny characters in bad header.
7119
7120 1999-03-20 Paul Eggert <eggert@twinsun.com>
7121
7122 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64009
7123
7124 * acinclude.m4 (AC_LFS_FLAGS): Add support for IRIX 6.2 and later.
7125 (AC_LFS_SPACE_APPEND): Assume $2 is quoted properly; all callers
7126 changed.
7127 (AC_LFS): Simplify AIX revision number test.
7128
7129 1999-03-17 Paul Eggert <eggert@twinsun.com>
7130
7131 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64008
7132
7133 * configure.in (AC_VALIDATE_CACHED_SYSTEM_TUPLE):
7134 Remove; it doesn't work that well
7135 with AC_CANONICAL_HOST.
7136 (fp_WITH_INCLUDED_MALLOC): Remove; we'll just use the system malloc.
7137
7138 * Makefile.am (EXTRA_DIST): Remove AC-PATCHES, AM-PATCHES, BI-PATCHES.
7139
7140 * Makefile.am (EXTRA_DIST): Remove gmalloc.c.
7141
7142 * acinclude.m4 (fp_WITH_INCLUDED_MALLOC): Remove.
7143
7144 * tar.texi: Fix bug-report addr.
7145
7146 * README: Remove --with-included-malloc.
7147 Upgrade version numbers of build software.
7148
7149 1999-03-07 Paul Eggert <eggert@twinsun.com>
7150
7151 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64007.
7152
7153 * acinclude.m4 (AM_WITH_NLS): Port to Solaris 2.5.1,
7154 where bindtextdomain and gettext require -lintl.
7155 (AC_LFS_FLAGS): Simplify so that it only gets the flags;
7156 `no' means it failed.
7157 (AC_LFS_SPACE_APPEND, AC_LFS_MACRO_VALUE): New macros.
7158 (AC_LFS): Use them. Set _FILE_OFFSET_BITS, _LARGEFILE_SOURCE, and
7159 _LARGE_FILES from LFS_CFLAGS, so that in the normal case we don't need
7160 to add anything to the command line (it's all in config.h).
7161 Put any extra -D and -I options into CPPFLAGS, the rest into CFLAGS.
7162
7163 1999-03-01 Paul Eggert <eggert@twinsun.com>
7164
7165 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64006.
7166
7167 * acinclude.m4 (AC_LFS_FLAGS): Port to AIX 4.2.
7168
7169 * src/list.c: (gid_from_oct, major_from_oct, minor_from_oct,
7170 mode_from_oct, off_from_oct, size_from_oct, time_from_oct,
7171 uid_from_oct, uintmax_from_oct): Use TYPE_MAXIMUM instead of macros
7172 like OFF_MAX, which are not reliable
7173 (e.g. OFF_MAX in AIX 4.2 is incorrect).
7174 * src/system.h (GID_MAX, MAJOR_MAX, MINOR_MAX, MODE_MAX, OFF_MAX,
7175 SIZE_MAX, TIME_MAX,UID_MAX, UINTMAX_MAX): Remove; no longer used.
7176
7177 * src/incremen.c (get_directory_contents):
7178 Don't use statx if _LARGE_FILES; it doesn't work under AIX 4.2.
7179 Have statx depend on STX_HIDDEN, not AIX.
7180
7181 * src/create.c (to_oct):
7182 New parameter substitute, giving a substitute value to use
7183 when the original value is out of range. Do not append a space to the
7184 output; modern tars don't. When a value is out of range, specify the
7185 maximum value, not the number of bits.
7186 (GID_NOBODY, UID_NOBODY): New macros.
7187 (gid_to_oct, uid_to_oct): Use them as substitutes.
7188 (finish_header): Do not assume that UINTMAX_TO_OCT appends a space.
7189 (dump_file): Check whether the file changed as we read it.
7190
7191 * src/rmt.c (main): Remove suspicious AIX/386 code.
7192
7193 1999-02-19 Paul Eggert <eggert@twinsun.com>
7194
7195 * intl/localealias.c (read_alias_file): Don't assume that memcpy
7196 returns a type compatible with char *; it doesn't on SunOS
7197 4.1.4 with Sun cc, since <string.h> doesn't declare memcpy.
7198
7199 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64005.
7200
7201 * src/tar.c (long_options, usage): Prefer --unbzip2 to --bunzip2.
7202 * doc/tar.texi: Add --bzip2, --unbzip2 options.
7203
7204 * configure.in (AC_CANONICAL_HOST, AC_VALIDATE_CACHED_SYSTEM_TUPLE):
7205 Add.
7206 (AC_LINK_FILES): Omit; AM_GNU_GETTEXT now does this.
7207 (AC_OUTPUT): Omit munging of po/Makefile; AM_GNU_GETTEXT now does this.
7208 * acinclude.m4 (AM_WITH_NLS):
7209 Update to latest gettext version (serial 5).
7210 (AC_LFS_FLAGS): New macro
7211 (AC_LFS): Use it. Append to CFLAGS, LDFLAGS, LDLIBS instead of
7212 working only with unset variables. Append to CFLAGS, not CPPFLAGS.
7213 Work properly in cross-compilation scenario, by checking for getconf
7214 with AC_CHECK_TOOL and by ditching uname in favor of
7215 AC_CANONICAL_HOST and $host_os. Add --disable-lfs option.
7216
7217 * lib/getdate.y: Update to fileutils 4.0 getdate.y, with one patch:
7218 replace FORCE_ALLOCA_H with HAVE_ALLOCA_H.
7219 * lib/Makefile.am (AUTOMAKE_OPTIONS): Append ../src/ansi2knr,
7220 since getdate.y now uses ANSI code.
7221
7222 * config.guess, config.sub: New files; taken from automake 1.4.
7223
7224 * intl/Makefile.in, intl/VERSION, intl/bindtextdom.c,
7225 intl/cat-compat.c, intl/dcgettext.c, intl/dgettext.c,
7226 intl/explodename.c, intl/finddomain.c, intl/gettext.c,
7227 intl/gettext.h, intl/gettextP.h, intl/hash-string.h,
7228 intl/l10nflist.c, intl/libgettext.h, intl/loadinfo.h,
7229 intl/loadmsgcat.c, intl/localealias.c, intl/textdomain.c:
7230 Update to GNU gettext 0.10.35, with patches as per GCC snapshot 990109.
7231
7232 1999-02-01 Paul Eggert <eggert@twinsun.com>
7233
7234 * src/tar.c: Update copyright.
7235
7236 * NEWS: 1.12.64004
7237
7238 1999-02-01 Paul Eggert <eggert@twinsun.com>
7239
7240 * NEWS, configure.in: Version 1.12.64004
7241
7242 * configure.in (AC_LFS): Use this macro, instead of open-coding it.
7243
7244 * acinclude.m4 (AC_LFS, AM_PROG_CC_STDC): New macros.
7245
7246 * src/extract.c (extract_archive): Fix bug when extracting sparse
7247 files: they were trashing the tar file header.
7248
7249 * src/tar.c: (long_options, usage, OPTION_STRING, decode_options):
7250 Add -y or --bzip2 or --bunzip2 option.
7251
7252 1999-01-30 Paul Eggert <eggert@twinsun.com>
7253
7254 * src/names.c (cached_no_such_uname, cached_no_such_gname,
7255 cached_no_such_uid, cached_no_such_gid): New vars.
7256 (uid_to_uname, gid_to_gname, uname_to_uid, gname_to_gid):
7257 Cache failures, too.
7258
7259 * src/tar.c (decode_options):
7260 Don't pass names longer than UNAME_FIELD_SIZE to
7261 uname_to_uid, as it messes up the cache. Similarly for gname_to_uid.
7262
7263 1999-01-27 Paul Eggert <eggert@twinsun.com>
7264
7265 * NEWS, configure.in: Version 1.12.64003
7266
7267 * src/buffer.c (backspace_output, close_archive): Cast
7268 rmtlseek position arg to off_t, for benefit of K&R compilers
7269 with long long.
7270 * src/compare.c (verify_volume): Likewise.
7271
7272 * NEWS, configure.in: Version 1.12.64002
7273
7274 * src/create.c (gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct,
7275 off_to_oct, size_to_oct, time_to_oct, uid_to_oct):
7276 Cast arg to uintmax_t for benefit of pre-ANSI compilers with long long.
7277 * src/list.c: (gid_from_oct, major_from_oct, minor_from_oct,
7278 mode_from_oct, off_from_oct, size_from_oct, time_from_oct,
7279 uid_from_oct): Likewise.
7280
7281 1999-01-25 Paul Eggert <eggert@twinsun.com>
7282
7283 * incremen.sh: Fix timing bug in regression test.
7284
7285 1999-01-22 Paul Eggert <eggert@twinsun.com>
7286
7287 * NEWS, configure.in: Update version
7288
7289 * Makefile.am (localedir): Change to $(datadir)/locale.
7290 (DEFS): New macro, defining LOCALEDIR.
7291 (tar.o, tar._o, rmt.o, rmt._o): Remove.
7292 (INCLUDES): Add -I..
7293
7294 * Makefile.am (localedir): Change to $(datadir)/locale.
7295
7296 1999-01-21 Paul Eggert <eggert@twinsun.com>
7297
7298 * NEWS, README, configure.in: Unofficial version 1.12.64001.
7299
7300 * tests/Makefile.am (localedir): Change to $(datadir)/locale.
7301 * src/Makefile.am (localedir): Likewise.
7302 (DEFS): New macro, defining LOCALEDIR.
7303 (tar.o, tar._o, rmt.o, rmt._o): Remove.
7304 (INCLUDES): Add `-I..'.
7305
7306 * tests/incremen.sh: Fix timing bug.
7307
7308 1999-01-20 Paul Eggert <eggert@twinsun.com>
7309
7310 * NEWS, README, configure.in: Unofficial version 1.12.64000.
7311 `lfs.7' changed to `64000' in version number
7312 to conform to gnits standards.
7313
7314 * COPYING, INSTALL, doc/texinfo.tex, install-sh, missing,
7315 mkinstalldirs, ansi2knr.c: Update to latest public versions.
7316
7317 Rebuild with automake 1.4 and autoconf 2.13, to work around some
7318 porting problems.
7319
7320 1998-12-07 Paul Eggert <eggert@twinsun.com>
7321
7322 * NEWS, README, configure.in: Unofficial version 1.12.lfs.6.
7323
7324 * src/list.c (read_header):
7325 Accept file names as specified by POSIX.1-1996 section 10.1.1.
7326
7327 1998-11-30 Paul Eggert <eggert@twinsun.com>
7328
7329 * configure.in: Quote the output of uname.
7330
7331 * src/extract.c (set_stat): chmod after chown even when not root;
7332 if we are using --same-owner this is needed e.g. on Solaris 2.5.1.
7333
7334 1998-11-15 Paul Eggert <eggert@twinsun.com>
7335
7336 * NEWS, README, configure.in: Unofficial version 1.12.lfs.5.
7337
7338 * configure.in (ac_test_CPPFLAGS, ac_test_LDFLAGS, ac_test_LIBS,
7339 ac_getconfs, ac_result): Special case for HP-UX 10.20 or later.
7340
7341 1998-10-28 Paul Eggert <eggert@twinsun.com>
7342
7343 * NEWS, README, configure.in: Unofficial version 1.12.lfs.4.
7344
7345 * src/system.h (voidstar): Use void * if __STDC__ is defined,
7346 not merely nonzero.
7347
7348 * src/rtapelib.c: Don't use rexec code unless compiled with WITH_REXEC.
7349 On many installations, rexec is disabled.
7350
7351 1998-08-07 Paul Eggert <eggert@twinsun.com>
7352
7353 * NEWS, README, configure.in: Unofficial version 1.12.lfs.3.
7354
7355 * src/names.c (uid_to_uname, gid_to_gname): Don't used cached name
7356 for nameless users and groups.
7357
7358 1998-02-17 Paul Eggert <eggert@twinsun.com>
7359
7360 * NEWS, README, configure.in: Unofficial version 1.12.lfs.2.
7361 * NEWS, README: Add explanation of why this isn't an official version.
7362
7363 1998-02-02 Paul Eggert <eggert@twinsun.com>
7364
7365 * NEWS, README, configure.in: Unofficial version 1.12.lfs.1.
7366 This is an unofficial version.
7367
7368 1997-12-17 Paul Eggert <eggert@twinsun.com>
7369
7370 * src/incremen.c (ST_DEV_MSB): New macro.
7371 (NFS_FILE_STAT): Use most significant bit of st_dev,
7372 even if it's unsigned.
7373
7374 1997-12-08 Paul Eggert <eggert@twinsun.com>
7375
7376 * src/system.h (ST_NBLOCKS): Fix typo in definition.
7377
7378 1997-11-19 Paul Eggert <eggert@twinsun.com>
7379
7380 * configure.in (HAVE_INTTYPES_H):
7381 Don't ignore cache variable if it's already set.
7382
7383 1997-11-10 Paul Eggert <eggert@twinsun.com>
7384
7385 * src/rmt.c (main): Don't assume mt_count is of type daddr_t.
7386 * src/delete.c (records_read): Now off_t.
7387 (move_archive): Don't assume mt_count is of type daddr_t.
7388
7389 1997-10-30 Paul Eggert <eggert@twinsun.com>
7390
7391 * configure.in (CPPFLAGS, LDFLAGS, LIBS):
7392 Set to appropriate values if large file support
7393 needs explicit enabling.
7394 (HAVE_INTTYPES_H, HAVE_ST_FSTYPE_STRING, daddr_t, major_t, minor_t,
7395 ssize_t):
7396 New macros to configure.
7397 (AC_TYPE_MODE_T, AC_TYPE_PID_T, AC_TYPE_OFF_T): Add.
7398
7399 * acconfig.h (daddr_t, HAVE_INTTYPES_H, HAVE_ST_FSTYPE_STRING,
7400 major_t, minor_t, ssize_t): New macros.
7401
7402 * src/arith.h (TARLONG_FORMAT):
7403 Fix typo: %uld -> %lu. Use unsigned when long long
7404 (%lld -> %llu).
7405 (add_to_tarlong_helper, mult_tarlong_helper): 2nd arg is now unsigned long.
7406 (add_to_tarlong, mult_tarlong): Cast 2nd arg to unsigned long.
7407
7408 * src/arith.c (add_to_tarlong_helper, mult_tarlong_helper):
7409 2nd arg is now unsigned long.
7410
7411 * src/rmt.c (allocated_size): Now size_t, and now initialized to 0.
7412 (prepare_record_buffer): Arg is now size_t.
7413 Remove now-useless casts.
7414
7415 (main): Use `long' for status, so that it can store ssize_t.
7416 Use daddr_t, mode_t, size_t, off_t when appropriate.
7417 Convert daddr_t and off_t values ourselves, since they might be longer
7418 than long. Convert other types using `long' primitives.
7419 When processing MTIOCTOP, do not try to pass resulting
7420 count back, since it won't work (it could be too large) and it's
7421 not expected anyway.
7422
7423 * src/update.c:
7424 (append_file) Use off_t, size_t, ssize_t when appropriate. Remove
7425 now-useless casts. Use unsigned long to print *_t types, except use
7426 STRINGIFY_BIGINT for off_t.
7427 (update_archive): Cast -1 to dev_t when necessary.
7428
7429 * src/tar.c (check_decimal):
7430 Now returns 1 if successful, 0 otherwise, and returns
7431 uintmax_t value into new arg. Check for arithmetic overflow.
7432 (decode_options): Avoid overflow if record_size fits in size_t but not int.
7433 Check for overflow on user or group ids.
7434
7435 * src/compare.c (diff_init, process_rawdata, read_and_process,
7436 diff_sparse_files, diff_archive):
7437 Use off_t, pid_t, size_t, ssize_t when appropriate.
7438 Remove now-useless casts. Use unsigned long to print *_t types,
7439 except use STRINGIFY_BIGINT for off_t.
7440
7441 (process_noop, process_rawdata, process_dumpdir, read_and_process):
7442 Size arg is now size_t.
7443
7444 (diff_sparse_files): Arg is now off_t. Check for size_t overflow
7445 when allocating buffer.
7446
7447 * src/rtapelib.c:
7448 (do_command, rmt_open__, rmt_read__, rmt_lseek__, rmt_ioctl__):
7449 Use pid_t, size_t, ssize_t when appropriate. Remove now-useless casts.
7450 Use unsigned long to print *_t types, except use STRINGIFY_BIGINT for
7451 off_t.
7452
7453 (get_status_string, get_status_off): New function.
7454 (get_status): Now returns long, so that it can store ssize_t.
7455 Invoke get_status_string to do the real work.
7456 (rmt_read__, rmt_write__): Now returns ssize_t. Size arg is now size_t.
7457 (rmt_lseek__): Now returns off_t, using new get_status_off function.
7458 (rmt_ioctl__): Convert mt_count by hand,
7459 since it might be longer than long.
7460
7461 * src/mangle.c (extract_mangle):
7462 Check for overflow when converting off_t to size_t.
7463 Use off_t, size_t when appropriate. Remove now-useless casts.
7464
7465 * src/system.h (mode_t): Remove; now done by autoconf.
7466 (ST_NBLOCKS): Do not overflow if st_size is near maximum.
7467 Return number of ST_NBLOCKSIZE-byte blocks,
7468 not number of 512-byte blocks;
7469 this also helps to avoid overflow.
7470 (st_blocks): Declare if needed.
7471 (ST_NBLOCKSIZE): New macro.
7472 (<limits.h>, <inttypes.h>): Include if available.
7473 (CHAR_BIT): New macro.
7474 (uintmax_t): New typedef.
7475 (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_STRLEN_BOUND,
7476 UINTMAX_STRSIZE_BOUND, GID_MAX, MAJOR_MAX, MINOR_MAX, MODE_MAX,
7477 OFF_MAX, SIZE_MAX, TIME_MAX, UID_MAX, UINTMAX_MAX): New macros.
7478
7479 * src/names.c (name_init):
7480 Fix typo in error message: FILE* was passed, but char*
7481 was wanted.
7482
7483 (read_name_from_file, name_gather, addname, name_match, name_scan,
7484 add_exclude): Use size_t when appropriate. Remove now-useless casts.
7485
7486 (exclude_pool_size, allocated_exclude_pool_size): Now size_t.
7487
7488 * src/extract.c (newdir_umask, current_umask): Now mode_t.
7489 (extract_sparse_file): Args now use off_t.
7490
7491 (set_mode, set_stat, make_directories, extract_sparse_file,
7492 extract_archive): Use off_t, size_t, ssize_t when appropriate. Remove
7493 now-useless casts. Use unsigned long to print *_t types, except use
7494 STRINGIFY_BIGINT for off_t.
7495
7496 * src/misc.c (quote_copy_string):
7497 Use size_t when appropriate. Remove now-useless casts.
7498
7499 * src/list.c (read_and, list_archive, read_header, decode_mode,
7500 print_header, print_for_mkdir):
7501 Use mode_t, off_t, size_t when appropriate. Remove
7502 now-useless casts. Use unsigned long to print *_t types, except use
7503 STRINGIFY_BIGINT for off_t.
7504
7505 (read_header): Check for overflow when converting header size.
7506
7507 (from_oct): Now static. Now returns uintmax_t. `where' arg is now
7508 const char *. Size arg is now size_t. Now takes new type and maxval
7509 args. Compute result using uintmax_t, not long. Report error if
7510 field does not contain octal number in range.
7511 (gid_from_oct, major_from_oct, minor_from_oct, mode_from_oct,
7512 off_from_oct, size_from_oct, time_from_oct, uid_from_oct,
7513 uintmax_from_oct): New functions.
7514
7515 (stringify_uintmax_t_backwards): New function.
7516
7517 (decode_mode, print_for_mkdir): Mode arg is now mode_t.
7518 (skip_file): Offset arg is now off_t.
7519
7520 * src/buffer.c (record_start_block, save_totsize, save_sizeleft,
7521 real_s_totsize, real_s_sizeleft, current_block_ordinal):
7522 Now off_t.
7523 (write_error): Arg is now ssize_t.
7524 (child_pid): Now pid_t.
7525 (available_space_after): Now size_t.
7526
7527 (child_open_for_compress, child_open_for_uncompress, flush_write,
7528 open_archive, flush_write, write_error, flush_read, close_archive):
7529 Use pid_t, ssize_t, size_t when appropriate. Remove now-useless
7530 casts. Use unsigned long to print *_t types, except use
7531 STRINGIFY_BIGINT for off_t.
7532
7533 * src/delete.c (records_read): Now daddr_t.
7534 (move_archive): Arg is now daddr_t. Check for overflow when
7535 computing offset.
7536 (move_archive, delete_archive_members): Use daddr_t, off_t when
7537 appropriate. Remove now-useless casts.
7538
7539 * src/rmt.h (rmt_read__, rmt_write__): Now returns ssize_t.
7540 (rmt_lseek): Now returns off_t.
7541
7542 * src/create.c (to_oct):
7543 Now static. Value arg is now uintmax_t. Accept new args
7544 giving name of type of octal field, for error messages. Report an
7545 error if the value is too large to fit in the field.
7546 (gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct, off_to_oct,
7547 size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct): New functions.
7548
7549 (write_eot, write_long, finish_header, deal_with_sparse,
7550 finish_sparse_file, dump_file): Use dev_t, off_t, ssize_t, size_t when
7551 appropriate. Remove now-useless casts. Use unsigned long to print
7552 *_t types, except use STRINGIFY_BIGINT for off_t.
7553
7554 (find_new_file_size): 1st arg is now off_t*.
7555 (finish_sparse_file): Args now use off_t, not long.
7556 Check for lseek error.
7557 (create_archive, dump_file): Cast -1 to dev_t when necessary.
7558 (dump_file): Device arg is now dev_t.
7559 Avoid overflow when testing whether file has holes
7560 by using the new ST_NBLOCKSIZE macro.
7561
7562 * src/incremen.c (struct accumulator, add_to_accumulator,
7563 get_directory_contents, add_hierarchy_to_namelist, gnu_restore):
7564 Use size_t for sizes.
7565 (struct directory, get_directory_contents, add_hierarchy_to_namelist):
7566 Use dev_t, ino_t for devices and inodes.
7567 (gnu_restore): Use off_t for file offsets.
7568 (struct directory): Use char for flags. Add new flag `nfs'.
7569 (nfs): New constant
7570 (NFS_FILE_STAT): New macro.
7571 (note_directory): Accept struct stat * instead of
7572 device and inode number. All callers changed.
7573 (note_directory, get_directory_contents):
7574 Use NFS_FILE_STAT to determine whether directory is an NFS directory.
7575 (write_dir_file): Cast time_t to unsigned long before printing as %lu.
7576
7577 * src/common.h (record_size, struct name, struct sp_array,
7578 available_space_after):
7579 Use size_t for sizes.
7580 (save_sizeleft, save_totsize, current_block_ordinal, skip_file):
7581 Use off_t for file offsets.
7582 (struct name): dir_contents is now const char *, not char *.
7583 (dump_file, get_directory_contents): Use dev_t for devices.
7584 (to_oct): Remove decl.
7585 (GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT, MODE_TO_OCT, SIZE_TO_OCT,
7586 UID_TO_OCT, UINTMAX_TO_OCT, OFF_TO_OCT, TIME_TO_OCT, STRINGIFY_BIGINT,
7587 GID_FROM_OCT, MAJOR_FROM_OCT, MINOR_FROM_OCT, MODE_FROM_OCT,
7588 OFF_FROM_OCT, SIZE_FROM_OCT, TIME_FROM_OCT, UID_FROM_OCT,
7589 UINTMAX_FROM_OCT): New macros.
7590 (gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct, off_to_oct,
7591 size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct,
7592 stringify_uintmax_t_backwards, gid_from_oct, major_from_oct,
7593 minor_from_oct, mode_from_oct, off_from_oct, size_from_oct,
7594 time_from_oct, uid_from_oct, uintmax_from_oct): New decls.
7595 (print_for_mkdir): 2nd arg is now mode_t.
7596
7597 See ChangeLog.1 for earlier changes.
7598
7599
7600 \f
7601 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006
7602 Free Software Foundation, Inc.
7603
7604 This file is part of GNU tar.
7605
7606 GNU tar is free software; you can redistribute it and/or modify
7607 it under the terms of the GNU General Public License as published by
7608 the Free Software Foundation; either version 2, or (at your option)
7609 any later version.
7610
7611 GNU tar is distributed in the hope that it will be useful,
7612 but WITHOUT ANY WARRANTY; without even the implied warranty of
7613 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
7614 GNU General Public License for more details.
7615
7616 You should have received a copy of the GNU General Public License
7617 along with GNU tar; see the file COPYING. If not, write to
7618 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
7619 Boston, MA 02110-1301, USA.
7620 \f
7621 Local Variables:
7622 mode: change-log
7623 version-control: never
7624 End:
This page took 0.36963 seconds and 5 git commands to generate.