]> Dogcows Code - chaz/tar/blob - ChangeLog
Updated
[chaz/tar] / ChangeLog
1 2004-12-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2
3 * configure.ac: Raised version number to 1.15
4 * NEWS: Likewise
5 * directory: Updated
6 * bootstrap (update_po): Give -r to wget. Always remove index.html
7 Ignore alloca-opt module (it duplicates alloca)
8
9 * tests/Makefile.am: Distribute star/quicktest.sh
10 * tests/star/README: Document quicktest.sh
11 * tests/star/qucktest.sh: Removed.
12 * tests/star/quicktest.sh: New file.
13
14 2004-12-18 Sergey Poznyakoff <gray@Mirddin.farlep.net>
15
16 * NEWS: Updated
17 * doc/tar.texi: Document auto-detection of compressed archive
18 formats.
19 * src/tar.c (decode_options): Ignore --seek if used with --delete.
20 Delete.c is based on the assumption that the archive is being
21 actually read, not lseeked.
22
23 * tests/delete05.at: New file
24 * tests/extrac02.at: Fixed typo in AT_SETUP
25 * tests/Makefile.am: Added delete05.at
26 * tests/testsuite.at: Likewise.
27
28 2004-12-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
29
30 * src/delete.c (delete_archive_members): Bugfix: when
31 attempting to delete an unexisting member, the last
32 blocking_factor blocks were zeroed.
33
34 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
35
36 * TODO: Mention sub-second resolution, lutimes, lchmod.
37
38 2004-11-27 Paul Eggert <eggert@cs.ucla.edu>
39
40 Adjust to recent gnulib changes.
41 * doc/getdate.texi: Remove, since bootstrap gets it from gnulib now.
42 * .cvsignore: Add rmt, rmt/*, rmt/*/*.
43 * lib/.cvsignore: Add allocsa.c, allocsa.h, allocsa.valgrind,
44 charset.alias, config.charset, getcwd.c, getcwd.h, localcharset.c,
45 localcharset.h, ref-add.sed, ref-add.sin, ref-del.sed,
46 ref-del.sin, setenv.c, setenv.h, unsetenv.c. Remove pathmax.h,
47 xstrdup.c.
48 * m4/.cvsignore: Add allocsa.m4, eealloc.m4, getcwd-path-max.m4,
49 localcharset.m4, realloc.m4, setenv.m4. Remove malloc.m4,
50 pathmax.m4, realloc.m4.
51
52 2004-11-26 Sergey Poznyakoff <gray@Mirddin.farlep.net>
53
54 * configure.ac: Raised version number to 1.14.91
55 * scripts/tarcat: New file
56 * scripts/Makefile.am: Added tarcat
57 * src/buffer.c (hit_eof): Changed type to boolean
58 (read_full_records,reading_from_pipe): New variables
59 (check_compressed_archive,open_compressed_archive): New functions
60 (open_archive): Autodetect compressed archives and act accodingly.
61 Set reading_from_pipe. This fixes contraversial set of changes
62 introduced 2004-05-11,2004-03-22.
63 * src/list.c (tar_checksum): New function
64 (read_header): Use tar_checksum().
65 * src/common.h (tar_checksum): New function
66
67 * tests/star/README: Updated
68 * NEWS: Updated
69 * PORTS: Updated
70
71 2004-11-16 Sergey Poznyakoff <gray@Mirddin.farlep.net>
72
73 * src/tar.c (decode_options): Fixed -o semantics. Thanks
74 Jean Delvare <khali@linux-fr.org>
75
76 2004-10-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
77
78 * bootstrap: Add localcharset
79 * lib/Makefile.tmpl: Initialize SUFFIXES and CLEANFILES since the
80 makefile snippet from localcharset uses '+=' on them.
81 * src/Makefile.am (LDADD): Add LIBICONV
82 * src/list.c (decode_header): Set uname/gname to NULL if their
83 header counterparts are empty
84 * src/tar.c (options): Use OPTION_NO_TRANS
85 * src/utf8.c: Use locale_charset() from gnulib
86
87 * tests/star/README: Updated
88
89 * NEWS: Updated
90 * TODO: Minor fix
91
92 2004-10-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
93
94 * THANKS: Added Bryan Ford
95 * doc/Makefile.am (.text): Fixed rule
96 * po/POTFILES.in: Added argp-help.c
97
98 2004-10-04 Bryan Ford <baford@mit.edu>
99
100 * src/tar.c: New option --exclude-caches, to exclude
101 cache directories automatically on archive creation.
102 Cache directories are directories containing a
103 standardized tag file, as specified at:
104 http://www.brynosaurus.com/cachedir/spec.html
105 * src/common.h: New variable exclude_caches_option.
106 * src/create.c: New function check_cache_directory(),
107 called from dump_dir0() if exclude_caches_option is set,
108 to check for a cache directory tag and exclude the directory
109 if such a tag is found.
110 * doc/tar.texi: Updated accordingly.
111
112 2004-09-16 Sergey Poznyakoff <gray@Mirddin.farlep.net>
113
114 * doc/tar.texi: Minor fix
115 * src/tar.c (options): Minor fix
116
117 2004-09-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
118
119 * TODO: Updated
120 * lib/Makefile.tmpl: Added 'rtapelib.o: localedir.h' dependency
121 * src/common.h: Comment WANT_DIRECTORY_REMOVE_OPTION.
122 * src/extract.c: Normalized use of remove_any_file().
123 * src/misc.c: Likewise.
124 * src/tar.c (parse_opt): Emit warning if -l option is used.
125 (show_default_settings): REMOTE_SHELL may be undefined
126
127 2004-09-07 Sergey Poznyakoff <gray@Mirddin.farlep.net>
128
129 Test suite rewritten in autotest.
130
131 * configure.ac: Updated for autotest
132 * src/tar.c (argp_program_version): Modified.
133 * tests/Makefile.am: Rewritten for autotest.
134
135 * tests/.cvsignore: Updated
136 * tests/append.at: New file
137 * tests/atlocal.in: New file
138 * tests/delete01.at: New file
139 * tests/delete02.at: New file
140 * tests/delete03.at: New file
141 * tests/delete04.at: New file
142 * tests/extrac01.at: New file
143 * tests/extrac02.at: New file
144 * tests/extrac03.at: New file
145 * tests/extrac04.at: New file
146 * tests/extrac05.at: New file
147 * tests/gzip.at: New file
148 * tests/ignfail.at: New file
149 * tests/incremental.at: New file
150 * tests/link01.at: New file
151 * tests/listed01.at: New file
152 * tests/listed02.at: New file
153 * tests/longv7.at: New file
154 * tests/multiv01.at: New file
155 * tests/multiv02.at: New file
156 * tests/multiv03.at: New file
157 * tests/old.at: New file
158 * tests/options.at: New file
159 * tests/recurse.at: New file
160 * tests/same-order01.at: New file
161 * tests/same-order02.at: New file
162 * tests/sparse01.at: New file
163 * tests/testsuite.at: New file
164 * tests/version.at: New file
165 * tests/volume.at: New file
166 * tests/star/gtarfail.at: New file
167 * tests/star/gtarfail2.at: New file
168 * tests/star/multi-fail.at: New file
169 * tests/star/pax-big-10g.at: New file
170 * tests/star/ustar-big-2g.at: New file
171 * tests/star/ustar-big-8g.at: New file
172
173 * tests/preset.in: Removed
174 * tests/before: Removed
175 * tests/after: Removed
176 * tests/version.sh: Removed.
177 * tests/append.sh: Removed.
178 * tests/delete01.sh: Removed.
179 * tests/delete02.sh: Removed.
180 * tests/delete03.sh: Removed.
181 * tests/delete04.sh: Removed.
182 * tests/extrac01.sh: Removed.
183 * tests/extrac02.sh: Removed.
184 * tests/extrac03.sh: Removed.
185 * tests/extrac04.sh: Removed.
186 * tests/extrac05.sh: Removed.
187 * tests/gzip.sh: Removed.
188 * tests/incremen.sh: Removed.
189 * tests/ignfail.sh: Removed.
190 * tests/link01.sh: Removed.
191 * tests/listed01.sh: Removed.
192 * tests/listed02.sh: Removed.
193 * tests/longv7.sh: Removed.
194 * tests/multiv01.sh: Removed.
195 * tests/multiv02.sh: Removed.
196 * tests/multiv03.sh: Removed.
197 * tests/old.sh: Removed.
198 * tests/options.sh: Removed.
199 * tests/same-order01.sh: Removed.
200 * tests/same-order02.sh: Removed.
201 * tests/volume.sh: Removed.
202 * tests/recurse.sh: Removed.
203 * tests/sparse01.sh: Removed.
204 * tests/star/gtarfail.sh: Removed.
205 * tests/star/gtarfail2.sh: Removed.
206 * tests/star/multi-fail.sh: Removed.
207 * tests/star/ustar-big-2g.sh: Removed.
208 * tests/star/ustar-big-8g.sh: Removed.
209 * tests/star/pax-big-10g.sh: Removed.
210
211 2004-09-07 Sergey Poznyakoff <gray@Mirddin.farlep.net>
212
213 * bootstrap: Install genfile.c from paxutils
214 * tests/genfile.c: Removed. Integrated into
215 paxutils.
216 * tests/mksparse.c: Removed. Integrated into
217 (paxutils) genfile.c
218 * tests/Makefile.am: Removed mksparse
219 * tests/sparse01.sh: Use genfile instead of mksparse
220
221 2004-09-06 Sergey Poznyakoff <gray@Mirddin.farlep.net>
222
223 Started merging with cpio into paxutils. Sources before
224 this point are tagged alpha-1_14_90
225
226 * Makefile.am: Updated for use with paxutils
227 * README-alpha: Likewise
228 * bootstrap: Likewise
229 * configure.ac: Likewise
230 * lib/Makefile.tmpl: Likewise
231 * po/POTFILES.in: Likewise
232 * src/Makefile.am: Likewise
233 * src/buffer.c: Likewise
234 * src/common.h: Likewise
235 * src/compare.c: Likewise
236 * src/create.c: Likewise
237 * src/delete.c: Likewise
238 * src/extract.c: Likewise
239 * src/incremen.c: Likewise
240 * src/list.c: Likewise
241 * src/mangle.c: Likewise
242 * src/misc.c: Likewise
243 * src/names.c: Likewise
244 * src/sparse.c: Likewise
245 * src/system.c: Likewise
246 * src/tar.c: Likewise
247 * src/update.c: Likewise
248 * src/utf8.c: Likewise
249 * src/xheader.c: Likewise
250
251 * src/system.h: Removed
252 * src/rmt.c: Removed
253 * src/rmt.h: Removed
254 * src/rtapelib.c: Removed
255
256 2004-09-03 Sergey Poznyakoff <gray@Mirddin.farlep.net>
257
258 * tests/listed02.sh: Do not depend on any particular ordering
259 of output.
260
261 2004-09-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
262
263 * doc/tar.texi: Document the use of -C option in
264 file lists. Document --seek option.
265 * configure.ac: New option --with-rmt. New configuration variable
266 DEFAULT_RMT_DIR. Removed DEFAULT_RMT_COMMAND.
267 * src/Makefile.am: Install rmt into rmtdir
268 * src/tar.c (usage): Minor fix.
269 * NEWS: Updated.
270 * README: Updated.
271
272 2004-09-01 Sergey Poznyakoff <gray@Mirddin.farlep.net>
273
274 * configure.ac: Raised version number to 1.14.90
275 * src/common.h (is_individual_file): New prototype
276 * src/create.c (dump_file0): Fix bug introduced
277 2004-02-21.
278 * src/names.c (register_individual_file)
279 (is_individual_file): New functions.
280 * tests/listed01.sh: Use genfile instead of dd.
281 * tests/listed02.sh: New file.
282 * tests/Makefile.am: Added listed02.sh
283
284 * NEWS: Updated
285
286 2004-08-31 Sergey Poznyakoff <gray@Mirddin.farlep.net>
287
288 * src/sparse.c (sparse_add_map): Fixed improper initializations
289 of sparse_map_size. We assume that whatever number it contains
290 describes adequately the current size of sparse_map. The only
291 number we need to reset is sparse_map_avail.
292 * src/compare.c (verify_volume): Call set_next_block_after
293 if read_header returns HEADER_FAILURE
294 Destroy and reinitialize content of current_stat_info and
295 extended_header after each iteration (bug reported by
296 John L. Males <jlmales@yahoo.com>).
297 Issue a warning if the created archive contains some members
298 whose file names were stripped off their leading prefixes.
299 This is a temporary fix of the issue reported by Bdale Garbee
300 <bdale@gag.com> (Refs: Debian bug 230064, Message-Id
301 <87n07kyzhi.fsf@rover.gag.com>, Sun, 15 Feb 2004 11:22:17 -0700)
302
303 * src/names.c (removed_prefixes_p): New function.
304
305 * src/buffer.c: When computing write rate do not take
306 into account the time needed to verify the archive(s).
307 The bug reported by John L. Males <jlmales@yahoo.com>
308 (set_start_time,compute_duration): New functions.
309 (print_total_written): Use the result of compute_duration().
310 (close_archive): Call compute_duration.
311 * src/common.h (set_start_time, removed_prefixes_p): New prototypes.
312 * src/list.c (decode_header): Fixed initialization
313 of stat_info->is_sparse
314 * src/tar.c (main): Call set_start_time().
315
316 * src/misc.c (unquote_string): Unquote '\a' and '\v'.
317 Reported by Helmut Waitzmann <helmut.waitzmann@web.de>.
318
319 * NEWS: Updated
320 * THANKS: Updated
321
322 2004-08-30 Sergey Poznyakoff <gray@Mirddin.farlep.net>
323
324 * src/tar.c: Fix copy-n-paste errors in the license
325
326 2004-08-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
327
328 * scripts/backup.in: Renamed LIBPATH to LIBDIR.
329 Use ROOT_FS with -C option. Do not send mail
330 if ADMINISTRATOR is set to NONE.
331 * scripts/backup.sh.in (test_root): Append / to
332 ROOT_FS if it does not already end in it.
333 * scripts/restore.in: Renamed LIBPATH to LIBDIR.
334 New option -a (--all). Do not start restore unless
335 -a or patterns are given.
336 (restore_fs,restore_files): Fixed use of --listed option.
337 * doc/tar.texi: Updated
338 * NEWS: Updated
339
340 2004-08-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
341
342 * src/tar.c (find_argp_option): Fixed typo
343
344 2004-08-12 Paul Eggert <eggert@cs.ucla.edu>
345
346 Merge argp, getopt, xalloc changes from gnulib.
347 * bootstrap (gnulib_modules): Add xalloc-die.
348 Remove code to test for patches; we don't have patches now.
349 Set LC_ALL=C so that file names sort consistently.
350 Prefer the gnulib copies of gettext.m4, glibc21.m4,
351 lib-ld.m4, lib-prefix.m4, po.m4 too.
352
353 * patches/getopt.diff: Remove; gnulib now works unpatched.
354 * configure.ac (_getopt_long_only_r): Remove check.
355 gl_ARGP now does this for us.
356 * lib/.cvsignore: Add fnmatch.h, getopt_.h, sysexit.h,
357 xalloc-die.c.
358 * src/extract.c: Adjust to changes to gnulib xalloc module.
359 (extr_init): Remove assignment to xalloc_fail_func; no longer needed.
360 (xalloc_die): New function.
361
362 2004-08-10 Sergey Poznyakoff <gray@Mirddin.farlep.net>
363
364 * NEWS: Updated
365
366 * src/buffer.c (flush_write): Limit filenames
367 of the members that straddle multivolume archive
368 boundary to 100 characters.
369 (flush_read): Use strncmp when comparing multivolume member
370 names.
371 * tests/multiv03.sh: New file
372 * tests/Makefile.am: Added multiv03.sh
373
374 2004-08-09 Sergey Poznyakoff <gray@Mirddin.farlep.net>
375
376 * src/list.c (read_and): Call decode_header before
377 calling skip_member()
378 (skip_member): Use is_sparse field to determine if the
379 member is a sparse file.
380
381 * tests/Makefile.am: Added extrac05.sh
382 * tests/extrac05.sh: New file
383 * tests/append.sh: Rearranged leading comments. Added explicit
384 references to report messages wherever available.
385 * tests/delete01.sh: Likewise
386 * tests/delete02.sh: Likewise
387 * tests/delete03.sh: Likewise
388 * tests/delete04.sh: Likewise
389 * tests/extrac01.sh: Likewise
390 * tests/extrac02.sh: Likewise
391 * tests/extrac03.sh: Likewise
392 * tests/extrac04.sh: Likewise
393 * tests/gzip.sh: Likewise
394 * tests/ignfail.sh: Likewise
395 * tests/incremen.sh: Likewise
396 * tests/link01.sh: Likewise
397 * tests/listed01.sh: Likewise
398 * tests/longv7.sh: Likewise
399 * tests/multiv01.sh: Likewise
400 * tests/multiv02.sh: Likewise
401 * tests/old.sh: Likewise
402 * tests/options.sh: Likewise
403 * tests/recurse.sh: Likewise
404 * tests/same-order01.sh: Likewise
405 * tests/same-order02.sh: Likewise
406 * tests/sparse01.sh: Likewise
407 * tests/version.sh: Likewise
408 * tests/volume.sh: Likewise
409
410 2004-08-08 Sergey Poznyakoff <gray@Mirddin.farlep.net>
411
412 * bootstrap: Extended --update-po option to take an
413 optional argument specifying the po file to update.
414 * src/create.c: Improved compatibility with 1.13.25
415 * tests/link01.sh: New file.
416 * tests/Makefile.am: Added link01.sh
417
418 2004-08-06 Paul Eggert <eggert@cs.ucla.edu>
419
420 Merge from gnulib.
421
422 * patches/argp.diff: Remove; no longer needed.
423
424 * lib/.cvsignore: Add stat-macros.h.
425 Remove addext.c, malloc.c, realloc.c.
426
427 * src/extract.c: Include <getcwd.h>.
428 (extract_archive): Rewrite with new macro IS_ABSOLUTE_FILE_NAME.
429 * src/extract.c (make_directories):
430 FILESYSTEM_PREFIX_LEN -> FILE_SYSTEM_PREFIX_LEN.
431 * src/misc.c (must_be_dot_or_slash): Likewise.
432 * src/names.c (excluded_name, safer_name_suffix, stripped_prefix_len):
433 Likewise.
434 * src/tar.c (parse_opt): Likewise.
435 * src/incremen.c (purge_directory): Fix format buffer typos in warning
436 strings.
437 * src/tar.c (options): Add missing initializers to pacify gcc.
438 (decode_options): Remove unused var.
439
440 2004-08-02 Paul Eggert <eggert@cs.ucla.edu>
441
442 * bootstrap (gnulib_modules): Add getpagesize.
443 * configure.ac (valloc): Remove check; valloc no longer used.
444 * lib/.cvsignore: Add getpagesize.h.
445 * m4/.cvsignore: Add getpagesize.m4.
446 * src/buffer.c (record_buffer): New var.
447 (open_archive): Don't use valloc; on older or buggy hosts, you can't
448 free the result. Use page_aligned_alloc instead.
449 * src/compare.c (diff_init): Likewise.
450 * src/buffer.c (open_archive): Record the pointer to be freed
451 into record_buffer.
452 (close_archive): Free record_buffer.
453 * src/common.h (page_aligned_alloc): New decl.
454 * src/misc.c (quote_n, quote): Remove these redundant functions.
455 (ptr_align): New function, from coreutils/src/system.h.
456 (page_aligned_alloc): New function.
457 * src/system.h (valloc): Remove.
458
459 2004-07-09 Paul Eggert <eggert@cs.ucla.edu>
460
461 * src/extract.c (extract_archive): Do not report an error
462 when hard-linking X to X when X exists. Problem reported by
463 Toby Peterson.
464 * lib/.cvsignore: Add fchown-stub.c.
465
466 2004-06-29 Sergey Poznyakoff <gray@Mirddin.farlep.net>
467
468 * NEWS: Updated
469 * src/common.h (root_device): New global.
470 (gnu_restore): Renamed to purge_directory().
471 * src/extract.c (extr_init): Save the device number
472 of the root device.
473 (extract_archive): Renamed gnu_restore() to purge_directory().
474 * src/incremen.c (gnu_restore): Renamed to purge_directory().
475 Do not attempt to purge the directory if it is on a different
476 device and one_file_system_option is set.
477
478 2004-06-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
479
480 * doc/tar.texi: The actual default for exclude patterns
481 is --no-anchored. Fixed.
482 * src/tar.c (options): Likewise.
483 Thanks "Felix Natter" <felix.natter@ldc.de> for noticing.
484
485 2004-06-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
486
487 * doc/tar.texi: Fixed several inconsistencies.
488 * src/tar.c: Fixed docstring for --checkpoint option.
489
490 2004-05-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
491
492 * src/buffer.c (seek_archive): New function
493 * src/common.h (seek_archive): New function
494 (seekable_archive): New global.
495 * src/list.c (skip_file): Use seek_archive() if
496 possible.
497 * src/tar.c (struct fmttab): Accept 'pax' as alias
498 for 'posix'
499 (options): New option -n (--seek).
500 * src/update.c: Determine type of the archive before
501 appending to it.
502
503 * TODO: Updated.
504
505 2004-05-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
506
507 * bootstrap: New option --update-po
508 * src/tar.c: New option -H (short alias to --format)
509 * doc/tar.texi: Document -H option
510 * src/names.c (safer_name_suffix): Fixed bug introduced
511 2004-05-11.
512
513 2004-05-16 Sergey Poznyakoff <gray@Mirddin.farlep.net>
514
515 * bootstrap: Apply patches from patch subdirectory
516 * patches: New dir
517 * patches/argp.diff: New file
518 * patches/getopt.diff: New file
519 * configure.ac: Check for _getopt_long_only_r and
520 force using included version of getopt if the function
521 is not available.
522 * src/tar.c: Use argp for command line parsing.
523 * src/system.h: Minor formatting fix
524 * m4/.cvsignore: Updated
525 * lib/.cvsignore: Updated
526 * doc/tar.texi: Minor fix.
527 * src/extract.c: Fix improper use of 'path' term
528 * src/incremen.c: Likewise
529 * src/list.c: Likewise
530 * src/misc.c: Likewise
531 * src/names.c: Likewise
532 * src/rmt.h: Likewise
533 * src/rtapelib.c: Likewise
534 * src/update.c: Likewise
535 * src/xheader.c: Likewise
536 * tests/star/README: Minor fix
537
538 2004-05-13 Sergey Poznyakoff <gray@Mirddin.farlep.net>
539
540 * configure.ac: Raised version number to 1.14.1
541 * src/tar.c: Renamed --strip-path to --strip-components
542 Changed improper use of _() to ngettext().
543 * src/extract.c: Renamed strip_path_option to strip_components_option
544 * src/common.h: Likewise.
545 * NEWS: Updated.
546 * doc/tar.texi: Updated
547
548 2004-05-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
549
550 * src/system.c (sys_child_open_for_uncompress): Do not
551 set read_full_records_option: the compressed archive is
552 likely not to contain integer number of records. Should
553 the user wish to use reblocking, he may always give tar
554 -B option. This is a minor improvement over the change
555 dated 2004-03-22.
556 * src/buffer.c (open_archive): Removed assignment to
557 read_full_records_option.
558
559 * src/names.c (safer_name_suffix): (safer_name_suffix): Use "%s"
560 as the format argument, rather than a possibly-translated variable
561 string. Patch provided by Jim Meyering <jim@meyering.net>
562 * src/tar.c (decode_options): Fixed typo in the comment.
563 * tests/star/README: Minor correction
564
565 2004-05-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
566
567 * directory: New file. GNU directory entry for tar.
568 * doc/Makefile.am: Rewritten. Added rules for generating
569 documentation for the project's website.
570 * doc/.cvsignore: Updated
571 * doc/index.html.in: New file.
572
573 2004-05-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
574
575 * configure.ac: Raised version number to 1.14
576 * NEWS: Updated.
577 * tests/after: Added copyleft statement
578 * tests/before: Added copyleft statemente
579 * tests/preset.in: Added copyleft statement
580
581 Tar 1.14 is released. Sources up to this point are tagged
582 release_1_14
583
584 2004-05-10 Sergey Poznyakoff <gray@Mirddin.farlep.net>
585
586 * configure.ac: Fixed prerequisite headers for sys/buf.h
587 (needed on FreeBSD)
588 * src/system.h: Likewise.
589 * tests/after (compare): Fixed argument quoting under eval
590 * tests/before: Quote TAR_ARCHIVE_FORMATS
591
592 2004-05-10 Sergey Poznyakoff <gray@Mirddin.farlep.net>
593
594 * NEWS: Updated
595 * README: Updated
596 * PORTS: Updated
597 * configure.ac: Call gl_AC_TYPE_INTMAX_T. Document
598 DEFAULT_.* variables. Use DEFAULT_RMT_COMMAND to set
599 the pathname of the rmt utility.
600 New option --enable-backup-scripts.
601 * doc/tar.texi: Updated
602 * scripts/Makefile.am: Install the scripts only if requested
603 by the configure.
604 * scripts/backup.in: Fixed --version output.
605 Fixed initialization of the listing files and printing
606 the time of the last previous level dump.
607 * scripts/restore.in: Fixed --version output.
608 * src/Makefile.am (localedir.h rule): Generate correct
609 DEFAULT_RMT_COMMAND variable.
610 * src/common.h (rmt_command_option): New variable.
611 * src/list.c (read_and): Print block number before
612 issuing 'Skipping to next header' diagnostics, if
613 requested by block_number_option.
614 * src/rtapelib.c: Use rmt_command_option instead of
615 hardcoded "/etc/rmt".
616 * src/tar.c: New option --rmt-command.
617 (decode_options): Handle --rmt-command. Initialize
618 rmt_command_option to DEFAULT_RMT_COMMAND.
619
620 2004-05-09 Sergey Poznyakoff <gray@Mirddin.farlep.net>
621
622 * doc/tar.texi: Further update.
623
624 2004-05-08 Sergey Poznyakoff <gray@Mirddin.farlep.net>
625
626 * configure.ac: Minor fix
627 * scripts/Makefile.am: Updated
628 * scripts/backup-specs: Updated
629 * scripts/backup.in: Minor fixes
630 * scripts/backup.sh: Removed
631 * scripts/backup.sh.in: New file. Source for backup.sh
632 * scripts/restore.in: New file
633 * scripts/.cvsignore: Updated
634 * scripts/WARNING: Removed
635 * doc/tar.texi: Updated
636 * NEWS: Updated
637
638 2004-05-07 Sergey Poznyakoff <gray@Mirddin.farlep.net>
639
640 * src/names.c (name_gather): Bugfix: Honor single -C with
641 --same-order.
642 * tests/same-order01.sh: New file
643 * tests/same-order02.sh: New file
644 * tests/Makefile.am: Updated
645
646 * tests/append.sh: Added copyleft header
647 * tests/delete01.sh: Likewise
648 * tests/delete02.sh: Likewise
649 * tests/delete04.sh: Likewise
650 * tests/extrac01.sh: Likewise
651 * tests/extrac02.sh: Likewise
652 * tests/extrac03.sh: Likewise
653 * tests/extrac04.sh: Likewise
654 * tests/gzip.sh: Likewise
655 * tests/ignfail.sh: Likewise
656 * tests/incremen.sh: Likewise
657 * tests/multiv01.sh: Likewise
658 * tests/old.sh: Likewise
659 * tests/options.sh: Likewise
660 * tests/recurse.sh: Likewise
661 * tests/version.sh: Likewise
662 * tests/volume.sh: Likewise
663 * tests/star/gtarfail.sh: Likewise
664 * tests/star/gtarfail2.sh: Likewise
665 * tests/star/multi-fail.sh: Likewise
666 * tests/star/pax-big-10g.sh: Likewise
667 * tests/star/qucktest.sh: Likewise
668 * tests/star/ustar-big-2g.sh: Likewise
669 * tests/star/ustar-big-8g.sh: Likewise
670
671 * doc/.cvsignore: Updated
672
673 2004-05-06 Sergey Poznyakoff <gray@Mirddin.farlep.net>
674
675 * configure.ac: Check whether date accepts +format argument
676 (for backup scripts).
677 * scripts/level-0: Removed
678 * scripts/level-1: Removed
679 * scripts/weekly.new: Removed
680 * scripts/dump-remind: Removed
681 * scripts/backup.in: New file
682 * scripts/backup.sh: New file
683 * scripts/dump-remind.in: New file
684 * scripts/backup-specs: Updated
685 * scripts/Makefile.am: Updated for new directory contents.
686 * scripts/.cvsignore: Updated
687
688 2004-05-05 Sergey Poznyakoff <gray@Mirddin.farlep.net>
689
690 * TODO: Updated
691 * doc/tar.texi: Updated
692 * src/tar.c: --utc implies -vv
693
694 2004-04-28 Sergey Poznyakoff <gray@Mirddin.farlep.net>
695
696 * src/utf8.c: Make sure ICONV_CONST is defined. AM_ICONV
697 does not define it if it fails to find iconv.h.
698
699 2004-04-26 Sergey Poznyakoff <gray@Mirddin.farlep.net>
700
701 * bootstrap: Use gnulib-tool to generate lib/Makefile.am
702 and parts of configure.ac
703 * configure.ac: Invoke tar_GNULIB to configure gnulib stuff.
704 * lib/Makefile.am: Removed
705 * lib/Makefile.tmpl: New file.
706 * lib/.cvsignore: Updated
707 * m4/.cvsignore: Updated
708 * src/xheader.c: Include stpcpy.h
709
710 * src/create.c: Produce an error, not warning, if the
711 filename is too long.
712 * tests/longv7.sh: Synchronized with the recent changes.
713
714 2004-04-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
715
716 * configure.ac: Fixed test for iconv_t
717 * src/rmt.h: Bugfix by Jürgen Weigert
718 * THANKS: Add Jürgen Weigert
719 * tests/star/README: Fixed typo
720
721 2004-04-04 Paul Eggert <eggert@twinsun.com>
722
723 Merge getdate documentation changes from coreutils.
724
725 * doc/getdate.texi: Update from coreutils CVS.
726 * doc/tar.texi: Fix getdate menu to match getdate.texi's.
727
728 Merge recent gnulib changes, and remove some lint.
729
730 Improve support for nanosecond-resolution time stamps.
731 * bootstrap: Add gettime, timespec modules.
732 * configure.ac (gl_GETTIME, gl_TIMESPEC): Add.
733 * lib/.cvsignore (getopt_int.h, gettime.c, gettimeofday.c,
734 timespec.h): Add.
735 * lib/Makefile.am (libtar_a_SOURCES): Add gettime.c, timespec.h.
736 * m4/.cvsignore: Add clock_time.m4, gettime.m4, gettimeofday.m4,
737 st_mtim.m4, timespec.m4. Remove malloc.m4, realloc.m4.
738 * src/common.h (newer_mtime_option): Now a struct timespec, not
739 time_t. All uses changed.
740 (NEWER_OPTION_INITIALIZED, OLDER_STAT_MTIME): New macros.
741 * src/create.c (dump_file0): Use OLDER_STAT_TIME to compare times.
742 * src/incremen.c (scan_path): Likewise.
743 * src/list.c (read_and): Likewise.
744 * src/list.c (read_and): Use NEWER_OPTION_INITIALIZED to decide
745 whether newer_mtime_option is initialized.
746 * src/tar.c (decode_options): Likewise.
747 * src/tar.c (decode_options): Adjust to new signature for get_date.
748
749 * src/buffer.c (short_read, flush_read): Use size_t, not ssize_t, for
750 result of safe_read, full_write, and similar functions.
751 Detect safe_read error by comparing to SAFE_READ_ERROR;
752 detect full_write error by comparing to 0.
753 All uses changed.
754 * src/common.h (write_error_details, sys_write_archive_buffer):
755 Likewise.
756 * src/misc.c (write_error_details): Likewise.
757 * src/rmt.c (main): Likewise.
758 * src/rmt.h (rmt_read__, rmt_write__): Likewise.
759 * src/rtapelib.c (rmt_read__, rmt_write__, rmt_ioctl__): Likewise.
760 * src/sparse.c (sparse_scan_file, sparse_dump_region,
761 check_sparse_region, check_data_region): Likewise.
762 * src/system.c (sys_write_archive_buffer, sys_drain_input_pipe,
763 sys_child_open_for_compress, sys_child_open_for_uncompress): Likewise.
764 * src/update.c (append_file): Likewise.
765
766 * src/buffer.c (clear_read_error_count): Use explicit (void)
767 to indicate a function with no arguments.
768 * src/create.c (check_links): Likewise.
769 * src/system.c (sys_get_archive_stat, sys_save_archive_dev_ino,
770 sys_detect_dev_null_output, sys_drain_input_pipe, sys_spawn_shell,
771 sys_reset_uid_gid, sys_get_archive_stat, sys_save_archive_dev_ino,
772 sys_detect_dev_null_output, sys_drain_input_pipe, sys_spawn_shell):
773 Likewise.
774 * src/utf8.c (get_input_charset): Likewise.
775 * src/xheader.c (xheader_ghdr_name, xheader_write_global,
776 xheader_decode_global, extended_header_init): Likewise.
777 * tests/mksparse.c (usage): Likewise.
778
779 * src/buffer.c (new_volume): Rename local variables to avoid
780 shadowing warnings.
781 * src/common.h (file_dumpable_p, sys_stat_nanoseconds,
782 sparse_file_p, sparse_member_p, sparse_fixup_header,
783 sparse_dump_file, sparce_extract_file, sparse_skip_file,
784 sparse_diff_file): Likewise.
785 * src/compare.c (diff_archive): Likewise.
786 * src/create.c (file_dumpable_p, dump_regular_file, dump_dir0,
787 dump_dir, dump_hard_link, file_count_links, dump_file0, dump_file):
788 Likewise.
789 * src/extract.c (repair_delayed_set_stat): Likewise.
790 * src/misc.c (maybe_backup_file, add_hierarchy_to_namelist):
791 Likewise.
792 * src/sparse.c (struct tar_sparse_optab, tar_sparse_dump_region,
793 tar_sparse_extract_region, sparse_dump_region, sparse_extract_region,
794 sparse_dump_file, sparse_file_p, sparse_member_p,
795 sparse_fixup_header, sparse_extract_file, sparse_skip_file,
796 check_data_region, sparse_diff_file): Likewise.
797 * src/system.c (sys_stat_nanoseconds): Likewise.
798 * src/xheader.c (xheader_format_name): Likewise.
799
800 * src/common.h (enum old_files): Remove comma before }; not portable.
801
802 * src/common.h (read_fatal_details): Add __attribute__ ((noreturn)).
803 * src/rmt.c (usage): Likewise.
804 * src/xheader.c (xheader_set_single_keyword): Likewise.
805 * tests/genfile.c (usage): Likewise.
806 * tests/mksparse.c (die, usage): Likewise. Also add printf attribute
807 to die.
808
809 * src/common.h (gname_to_gid, uname_to_uid): Add const to avoid
810 some gcc warnings.
811 * src/names.c (uname_to_uid, gname_to_gid): Likewise.
812 * src/utf8.c (struct langtab.lang, struct langtab.terr, struct
813 langtab.charset, charset_lookup): Likewise.
814
815 * src/common.h (name_init): Remove unused args. All callers changed.
816 * src/names.c (name_init): Likewise.
817
818 * src/common.h (usage, xheader_write, xheader_write_global,
819 sys_reset_uid_gid): New decls.
820
821 * src/compare.c (report_difference, process_noop): Add
822 __attribute__ ((unused)) for unused attributes.
823 * src/sparse.c (oldgnu_sparse_member_p, star_sparse_member_p):
824 Likewise.
825 * src/xheader.c (dummy_coder, dummy_decoder, atime_coder,
826 gid_coder, gname_coder, linkpath_coder, ctime_coder, mtime_coder,
827 path_coder, size_coder, uid_coder, uname_coder,
828 sparse_numblocks_coder): Likewise.
829
830 * src/create.c (dump_regular_finish, dump_dir0, dump_dir,
831 dump_file0): Now static.
832 * src/utf8.c (charset_lookup): Likewise.
833 * src/xheader.c (xheader_protected_pattern_p,
834 xheader_protected_keyword_p, xheader_set_single_keyword,
835 xheader_keyword_deleted_p, xheader_keyword_override_p,
836 xheader_list_append, xheader_list_destroy, xheader_set_keyword_equal):
837 Likewise.
838 * tests/genfile.c (usage): Likewise.
839 * tests/mksparse.c (die, mkhole, mksparse, usage, xlat_suffix):
840 Likewise.
841
842 * src/create.c (hash_link): Rewrite to avoid cast.
843
844 * src/extract.c (file_newer_p): Use parameter, not global var.
845 * src/misc.c (write_error_details): Likewise.
846
847 * src/extract.c (prepare_to_extract): Remove directory arg; not
848 used. All callers changed.
849
850 * src/misc.c (close_fatal): Remove; not used.
851 * src/system.c (sys_utimes): Likewise.
852
853 * src/rmt.c (get_string): Avoid buffer overrun (off by 1 error).
854
855 * src/rmt.c (main): Update copyright date to 2004.
856 * src/tar.c (decode_options): Likewise.
857
858 * src/rtapelib.c (get_status_string): Don't lose errno when
859 skipping the error messages.
860 (get_status): Report an error if atol returns a negative number.
861
862 * src/utf8.c (struct langtab, langtab, charset_lookup,
863 get_input_charset) [!defined HAVE_LIBCONV]: Omit unused
864 definitions.
865 (iconv_open, iconv, iconv_close) [!defined HAVE_LIBCONV]:
866 Use macros, not definitions, to avoid type clashes with system
867 headers.
868 (charset_lookup): Local var is now auto, not static.
869 (utf8_convert): Use ICONV_CONST instead of const, to avoid
870 type clashes.
871
872 * src/utf8.c (langtab): Initialize all elements of struct, to
873 avoid gcc warning.
874 * src/xheader.c (xhdr_tab): Likewise.
875
876 * src/xheader.c: Include fnmatch.h, since we use fnmatch.
877
878 * tests/mksparse.c (mkhole): Fix typo: bool was assigned to off_t.
879
880 2004-04-04 Sergey Poznyakoff <gray@Noldor.runasimi.org>
881
882 * NEWS: Updated
883 * configure.ac: Raised version number to 1.13.94
884 * src/system.h: Protect inclusion of <sys/time.h>
885 by ifdef.
886 Declare time() if HAVE_DECL_TIME is 0
887 * tests/.cvsignore: Added mksparse
888
889 * tests/sparse01.sh: New file
890 * tests/multiv02.sh: New file
891 * tests/Makefile.am: Add sparse01.sh and multiv02.sh
892 * tests/longv7.sh: Added missing call to 'after'
893
894 * src/common.h: Added missing prototypes
895 * src/compare.c (diff_archive): Use is_sparse member
896 instead of GNUTYPE_SPARSE.
897 * src/create.c: Removed unused variables
898 * src/extract.c (extract_archive): Use sparse_member_p instead
899 of GNUTYPE_SPARSE.
900 Removed unused variables
901 * src/list.c (decode_header): Use sparse_fixup_header to correct
902 the st_size value.
903 (print_header): Do not rely on GNUTYPE_SPARSE type.
904 Use st->stat.st_size to print real file size.
905 (skip_member): Assign stat_info.file_name to save_name. This fixes
906 bug reported by Mads Martin Joergensen <mmj@suse.de>
907 Use sparse_skip_file() to skip sparse members.
908 * src/rtapelib.c: include "common.h"
909 * src/sparse.c (struct tar_sparse_optab.sparse_member_p)
910 (struct tar_sparse_optab.fixup_header): New member
911 (tar_sparse_member_p): New function.
912 (tar_sparse_init): Return true if decode_header is not provided
913 (tar_sparse_fixup_header)
914 (sparse_member_p,sparse_fixup_header)
915 (sparse_skip_file)
916 (oldgnu_sparse_member_p,oldgnu_fixup_header,star_sparse_member_p)
917 (star_fixup_header, pax_sparse_member_p): New function
918 (pax_decode_header): Remove
919 * src/system.h: Include <sys/time.h> and <utime.h> when available
920 * src/tar.c (usage): Prototype moved to common.h
921 * src/tar.h (struct tar_stat_info.is_sparse): New member
922 * src/utf8.c (utf8_convert): Changed prototype
923 (get_input_charset): Removed unused variable
924 * src/xheader.c: include <fnmatch.h>
925 (size_decoder): Assign to both st->archive_file_size and
926 st->stat.st_size.
927 (st->stat.st_size): Assign to st->stat.st_size
928 (sparse_numbytes_decoder): Removed unused variable
929 * src/.cvsignore: Added .gdbinit
930 * THANKS: Added Mads Martin Joergensen
931
932 2004-03-26 Sergey Poznyakoff <gray@Mirddin.farlep.net>
933
934 * src/create.c (write_long_name): Do not allow more than
935 NAME_FIELD_SIZE-1 characters in a file name for V7 format
936 archives.
937 * tests/longv7.sh: New file.
938 * tests/Makefile.am: Add longv7.sh
939
940 2004-03-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
941
942 * src/buffer.c (open_archive): Clear read_full_records_option
943 if reading from a pipe.
944 (short_read): Display warning about the deduced record size
945 if version > 1
946 * tests/star/pax-big-10g.sh: Updated to match the above changes.
947 * tests/star/ustar-big-2g.sh: Likewise.
948 * tests/star/ustar-big-8g.sh: Likewise.
949
950 * configure.ac: Added gl_FUNC_STRTOULL
951 * src/create.c (start_header): Check for GNU_FORMAT
952 if incremental_option is set.
953 * src/xheader.c (to_decimal): New function.
954 (xheader_format_name): Use to_decimal() instead of snprintf.
955 * tests/listed01.sh: Use genfile instead of dd
956 * tests/multiv01.sh: Likewise.
957
958 2004-03-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
959
960 * src/list.c (read_and): Stop processing the archive after
961 encountering a single zero record. Many old archives contain
962 arbitrary garbage after it.
963 The warning is issued anyway.
964
965 2004-03-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
966
967 * src/rtapelib.c (rmt_lseek__,rmt_ioctl__): Bugfix. The
968 conversion buffer was not null terminated. Fix provided
969 by Leland Lucius <llucius@tiny.net>
970 * THANKS: Added Leland Lucius
971 * src/utf8.c (utf8_convert): Indentation fix.
972
973 2004-02-29 Sergey Poznyakoff <gray@Mirddin.farlep.net>
974
975 * src/buffer.c (flush_read): Bugfix: the
976 condition at line 714 included
977
978 || (status > 0 && !read_full_records_option)
979
980 which is grossly wrong, since even if new_volume() below succeeds,
981 the subsequent call to rmtread will overwrite the chunk of data
982 already read in the buffer and thus spoil everything.
983 * src/system.c (sys_child_open_for_uncompress): Minor stylistic
984 fix.
985 * tests/star/multi-fail.sh: New test.
986 * tests/Makefile.am: Added multi-fail.sh
987 * tests/star/README: Updated
988
989 2004-02-29 Sergey Poznyakoff <gray@Mirddin.farlep.net>
990
991 * NEWS: Updated
992 * configure.ac: Removed spurious AC_CHECK_LIB(iconv)
993 * src/common.h (utc_option): new global
994 (enum old_files.KEEP_NEWER_FILES): New element
995 * src/extract.c: Handle --keep-newer-files option
996 * src/list.c (tartime): Print UTC if --utc was given.
997 * src/tar.c: New options: --utc and keep-newer-files
998
999 * tests/Makefile.am: Added new tests
1000 * tests/after: Rewritten
1001 * tests/before: Rewritten
1002 * tests/preset.in: Rewritten
1003 * tests/delete03.sh: Accomodate for the new testsuite logic
1004 * tests/gzip.sh: Likewise
1005 * tests/incremen.sh: Likewise
1006 * tests/listed01.sh: Likewise
1007 * tests/multiv01.sh: Likewise
1008 * tests/old.sh: Likewise
1009 * tests/options.sh: Likewise
1010 * tests/version.sh: Likewise
1011 * tests/volume.sh: Likewise
1012
1013 * tests/star: New directory
1014 * tests/star/README: New file
1015 * tests/star/gtarfail.sh: New file
1016 * tests/star/gtarfail2.sh: New file
1017 * tests/star/pax-big-10g.sh: New file
1018 * tests/star/qucktest.sh: New file
1019 * tests/star/ustar-big-2g.sh: New file
1020 * tests/star/ustar-big-8g.sh: New file
1021
1022 2004-02-26 Paul Eggert <eggert@twinsun.com>
1023
1024 * doc/tar.texi (dircategory Individual utilities): Append period,
1025 as suggested by Karl Berry.
1026
1027 2004-02-24 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1028
1029 * src/list.c (decode_header): Call xheader_decode before
1030 the assignment to current_stat_info.archive_file_size.
1031
1032 2004-02-23 Paul Eggert <eggert@twinsun.com>
1033
1034 * configure.ac: Invoke AM_ICONV, to define ICONV_CONST if needed.
1035
1036 2004-02-23 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1037
1038 1.13.93 released.
1039
1040 * NEWS: Updated
1041 * tests/before: Move testing of the prerequisite archive formats
1042 to the separate function 'prereq'. Do not expect any arguments
1043 * tests/delete03.sh: Use prereq() instead of passing arguments
1044 to 'before'.
1045 * tests/incremen.sh: Likewise.
1046 * tests/listed01.sh: Likewise.
1047 * tests/multiv01.sh: Likewise.
1048
1049 2004-02-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1050
1051 Added UTF-8 support. Finished global extended header
1052 support.
1053
1054 * NEWS: Minor fix
1055 * configure.ac: Detect libiconv
1056 * src/utf8.c: New file. Conversions to and from utf-8.
1057 * src/Makefile.am: Added utf8.c
1058 * src/create.c (write_header_name) In pax format, use
1059 "path" keyword if the file name is not ASCII
1060 (start_header): Likewise for uname and gname.
1061 * src/list.c: Decode encountered global headers.
1062 * src/xheader.c: Use keywords from the global
1063 headers.
1064 Correctly handle UTF-8 conversions.
1065 (xheader_list_destroy): New function.
1066 (xheader_set_single_keyword,xheader_set_keyword_equal): Added
1067 missing gettext markers
1068 (decode_record): Rewritten using caller-provided handler and
1069 data closure.
1070 * tests/listed01.sh: Give credit to Andreas Schuldei.
1071
1072 2004-02-21 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1073
1074 * src/create.c (dump_file0): The conditional at line
1075 1296 prevented incremental backups on individual files
1076 from working, as reported by Andreas Schuldei
1077 <andreas@schuldei.org>.
1078
1079 This is due to the condition
1080
1081 (0 < top_level || !incremental_option)
1082
1083 Removing it makes incremental backups work for individual
1084 files as well as for directories. On the other hand, it does
1085 not affect other functionality, as shown by the reasoning below:
1086
1087 To begin with, the two parts of this condition are mutually
1088 superfluous, because
1089
1090 1) when top_level < 0, incremental_option == 1
1091 so the condition yields false
1092 2) when top_level >= 0, incremental_option == 0
1093 so the condition yields true.
1094
1095 In other words, it is completely equivalent to
1096
1097 (!incremental_option)
1098
1099 Now, let's consider the effect of its removal. There are two cases:
1100
1101 1) when incremental_option==1
1102 This means incremental backup in progress. In this case dump_file
1103 is invoked only for directories or for files marked with 'Y' by
1104 get_directory_contents. The latter are those that did not meet the
1105 condition in incremen.c:242, which is exactly the same condition
1106 as this at create.c:1296. So, for these files the check
1107 (!incremental_option) is useless, since the rest of the
1108 conditional will yield false anyway. On the other hand, if
1109 dump_file is invoked on a directory, the conditional will yield
1110 false due to !S_ISDIR assertion, so these will be processed as usual.
1111
1112 Thus, for this case the extra condition (!incremental_option) is
1113 irrelevant, and its removal won't alter the behavior of tar,
1114 *except* that it will enable incremental backups on individual
1115 files, which is the wanted effect.
1116
1117 2) when incremental_option==0
1118 In this case the condition yields true and its removal does not
1119 affect the functionality.
1120
1121 * THANKS: Updated
1122 * configure.ac: Raised patchlevel to 93
1123 * src/incremen.c: Minor stylistic fixes.
1124 * tests/listed01.sh: New test. Check listed incremental
1125 backups on individual files.
1126 * tests/Makefile.am: Added listed01.sh
1127
1128 2004-02-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1129
1130 * src/common.h (simple_finish_header,start_private_header): New
1131 declarations
1132 (xheader_ghdr_name): Changed declaration
1133 * src/create.c (start_private_header): Removed static qualifier.
1134 (write_extended): Removed superfluous last argument. Use
1135 xheader_write()
1136 (simple_finish_header): New function.
1137 (finish_header): Use simple_finish_header() to break recursive
1138 dependency between this function and write_extended().
1139 * src/tar.c (assert_format): Do not bail out if several
1140 --format arguments are given. This is a common case when
1141 TAR_OPTIONS are used.
1142 (decode_options): New option --show-defaults displays the
1143 compiled-in defaults.
1144 Use POSIX format if no --format option was given and
1145 --pax-option was specified.
1146 Do not allow to use --pax-option unless the archive format is
1147 set to POSIX (or reading subcommand is requested).
1148
1149 * src/update.c (update_archive): Write global extended header if
1150 constructed.
1151 * src/xheader.c (xheader_format_name): Bugfix.
1152 (xheader_xhdr_name): Changed the default extended header name
1153 to '%d/PaxHeaders.%p/%f', as POSIX requires.
1154 (xheader_ghdr_name): Removed unused argument.
1155 (xheader_write,xheader_write_global): New function.
1156 (xheader_decode): Modified to honor overrides whatever
1157 the current archive format is.
1158
1159 * src/delete.c (delete_archive_members): Call xheader_decode
1160 unconditionally.
1161 * src/list.c (decode_header): Likewise.
1162 * src/incremen.c (sort_obstack): Fixed typo in the comment
1163
1164 * doc/tar.texi: Document new default for extended
1165 header names.
1166
1167 * tests/before: Accept an optional list of allowed archive
1168 formats. Exit with the status 77 if the current archive
1169 format does not match any of them.
1170 * tests/delete03.sh: Require gnu, oldgnu or posix format
1171 * tests/incremen.sh: Require gnu or oldgnu format
1172 * tests/multiv01.sh: Likewise
1173
1174 2004-02-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1175
1176 * doc/tar.texi (Option Summary): Documented --pax-option
1177 * src/tar.c: Likewise.
1178 * NEWS: Likewise.
1179 * src/create.c (to_chars): Added a comment.
1180 * src/tar.h: Comment to GNU_FORMAT
1181
1182 2004-02-18 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1183
1184 * README: Updated
1185 * configure.ac: Added stpcpy
1186 * bootstrap: Likewise
1187 * lib/Makefile.am: Likewise
1188 * src/common.h (xheader_xhdr_name,xheader_ghdr_name): New
1189 functions
1190 * src/create.c (write_extended): Call xheader_xhdr_name
1191 instead of using hardcoded "././@PaxHeader" name.
1192 * src/tar.c: New option --pax-option (equivalent to -o option
1193 of pax).
1194 * src/xheader.c: Implement pax -o option. Fixed misleading
1195 heading comment (introduced 2003-09-02).
1196 * src/incremen.c: Minor fixes
1197 * m4/.cvsignore: Updated
1198
1199 2004-02-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1200
1201 * src/incremen.c: Removed accumulator stuff in favor of obstack.
1202 (get_directory_contents): Split into two functions
1203 * src/update.c: Minor changes
1204 * doc/tar.texi: Fixed typo
1205
1206 2004-02-15 Paul Eggert <eggert@twinsun.com>
1207
1208 Fix Debian bug 230872, originally reported by Jeff King in
1209 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=230872>.
1210
1211 * doc/tar.texi (posix compliance): Remove. The whole section
1212 was a misunderstanding of what POSIXLY_CORRECT is supposed to
1213 mean. The GNU Coding Standards says that POSIXLY_CORRECT
1214 is for disabling extensions that are incompatible with POSIX:
1215 it is not for disabling compatible extensions. All references
1216 to this section removed.
1217 (posix): This format is created only if the posix format is
1218 specified; it is no longer created if gnu format is specified
1219 and POSIXLY_CORRECT is set.
1220 * src/tar.c (decode_options): Ignore POSIXLY_CORRECT.
1221 POSIX does not specify the behavior of tar, so we should
1222 not worry about POSIXLY_CORRECT here.
1223
1224 2004-01-21 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1225
1226 * Makefile.am: Removed m4
1227 * configure.ac: Require automake-1.8/autoconf-2.59. Removed
1228 m4/Makefile.
1229 * README-alpha: Updated
1230 * bootstrap: Updated TP URL, improved help output. Default
1231 to :ext:anoncvs and set CVS_RSH, unless already set.
1232 * m4/Makefile.am: Removed
1233
1234 2004-01-21 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1235
1236 * bootstrap: Bugfix by Marco Gerards <metgerards@student.han.nl>:
1237 Use $option instead of $1 so all options will be parsed.
1238
1239 2004-01-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1240
1241 Started rewriting buffer.c ...
1242
1243 * bootstrap: New option --no-po
1244 * src/buffer.c (new_volume,check_label_pattern): Changed return type.
1245 (time_to_start_writing): Changed data type
1246 (file_to_switch_to): Removed. Variable never assigned to.
1247 (open_archive) Moved option compatibility checks to tar.c
1248 Other minor changes.
1249 * src/common.h (maybe_backup_file): Changed return type
1250 * src/misc.c: Likewise.
1251 * src/create.c: Updated invocations of safer_name_suffix
1252 * src/extract.c: Likewise
1253 * src/delete.c: Updated assignment to write_archive_to_stdout
1254 * src/tar.c (decode_options): More option compatibility checks
1255 (moved from buffer.c)
1256 * src/update.c (time_to_start_writing): Changed data type.
1257 * tests/recurse.sh: New test case.
1258 * tests/mksparse.c: New file.
1259 * tests/Makefile.am: Added recurse.sh and mksparse.c
1260
1261 2004-01-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1262
1263 * src/sparse.c (sparse_diff_file): Bugfix. Thanks
1264 Martin Simmons for the patch.
1265 * src/create.c (dump_dir0): Bugfix. Thanks Piotr Czerwinski
1266 <pius@pld-linux.org> for the patch.
1267
1268 2003-12-26 Paul Eggert <eggert@twinsun.com>
1269
1270 Synchronize with Gettext 0.13.1, Automake 1.8, Autoconf 2.59,
1271 and translation website.
1272
1273 * bootstrap: Don't bother skipping codeset.m4, glibc21.m4,
1274 intdiv0.m4, inttypes_h.m4, inttypes.m4, inttypes-pri.m4,
1275 isc-posix.m4, and lcmessage.m4 from gnulib. This list of files is
1276 a bit obsolete anyway, now that gettext 0.13.1 is out. Also, the
1277 files are replaced by autoreconf. Also, there seems to be a bug
1278 in gettext/autoconf/automake if we try to omit these files after
1279 autoreconf has replaced them, even though the gettext manual says
1280 they're optional. So give up and just include them for now, even
1281 though they make 'configure' longer and slower.
1282
1283 Change translation URL from
1284 <http://www.iro.umontreal.ca/contrib/po/maint/tar/> to
1285 <http://www2.iro.umontreal.ca/~gnutra/po/maint/tar/> to
1286 accommodate translator website revamp.
1287
1288 Fail if autoreconf fails.
1289
1290 * m4/.cvsignore: Add intmax.m4, longdouble.m4, printf-posix.m4,
1291 signed.m4, size_max.m4, wchar_t.m4, wint_t.m4, xsize.m4, to
1292 ignore files now supplied by gettext 0.13.1.
1293
1294 2003-12-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1295
1296 Synchronized with the backup repository on Mirddin
1297
1298 2003-12-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1299
1300 * configure.ac: Check for varios members of struct stat
1301 that may represent file modification times with a subsecond
1302 precision.
1303 Check for utimes (for future use)
1304 * src/buffer.c (short_read): Issue a warning on short reads.
1305 * src/common.h (sys_stat_nanoseconds): New function
1306 * src/create.c (dump_file0): Use sys_stat_nanoseconds().
1307 * src/list.c (read_and): Treat only two successive zero
1308 filled blocks as an EOF indicator. Issue a warning if
1309 a single one is encountered.
1310 * src/system.c (sys_stat_nanoseconds): New function
1311 * src/tar.h (tar_stat_info.atime_nsec,mtime_nsec,ctime_nsec): New
1312 members.
1313 * src/xheader.c (code_time,decode_time): Support for subsecond
1314 precision.
1315 (atime_coder,atime_decoder,ctime_coder,ctime_decoder)
1316 (mtime_coder,mtime_decoder): Update invocations of code_time and
1317 decode_time.
1318 (gid_decoder,size_decoder,uid_decoder,sparse_size_decoder)
1319 (sparse_numblocks_decoder,sparse_offset_decoder)
1320 (sparse_numbytes_decoder): Updated
1321
1322 2003-12-18 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1323
1324 * src/names.c (safer_name_suffix): Reverted change made
1325 2003-11-14. Reason: Discussion with Paul Eggert and
1326 Jean-Louis Martineau. See also ChangeLog entry from
1327 1999-08-14.
1328 * tests/delete03.sh: Likewise.
1329 * tests/extrac04.sh: Likewise.
1330 * tests/multiv01.sh: Likewise.
1331
1332 2003-12-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1333
1334 * src/incremen.c (write_directory_file): Use sys_truncate
1335 * src/list.c (print_header): Use archive_file_size member
1336 when printing real file size.
1337 * src/sparse.c (sparse_scan_file): Correctly handle files with
1338 a hole at the end.
1339 (sparse_dump_region,sparse_extract_region): Allow for zero size
1340 trailing blocks
1341
1342 2003-12-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1343
1344 * configure.ac: Raised version number to 1.13.92
1345 * src/list.c (decode_header): Discern between pax and ustar
1346 formats
1347 Initialize current_stat_info.archive_file_size.
1348
1349 NOTE: Modifications from this date on are temporarily
1350 stored on local CVS on mirddin. This repository will
1351 be synchronized with Savannah as soon as the latter
1352 becomes operational again.
1353
1354 2003-12-01 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1355
1356 * TODO: Updated
1357 * src/sparse.c: Initial implementation of GNU/pax sparse
1358 file format.
1359 * src/common.h (xheader_store): Changed prototype.
1360 * src/create.c: Update calls to xheader_store
1361 * src/extract.c (extract_archive): Check reported size vs.
1362 archive file size to determine if we have to do with a
1363 sparse file.
1364 * src/tar.c (usage): Cleaned up the sample argument to --newer
1365 option.
1366 (decode_options): Allow --sparse for POSIX_FORMAT archives.
1367 * src/xheader.c (struct xhdr_tab.coder; all coder function): Added
1368 extra argument
1369 Implemented GNU.sparse.* keywords.
1370
1371 2003-11-30 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1372
1373 * configure.ac: Check for setlocale. Thanks Bruno Haible for
1374 reporting.
1375
1376 2003-11-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1377
1378 * src/create.c (write_gnu_long_link): Use oldgnu
1379 magic with @LongLink blocks.
1380
1381 2003-11-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1382
1383 * src/tar.h: Support for star sparse format.
1384 * src/sparse.c: Likewise.
1385
1386 2003-11-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1387
1388 * src/sparse.c (sparse_diff_file): New function
1389 * src/common.h (sys_compare_uid,sys_compare_gid): New functions
1390 (sys_compare_uid_gid): Removed.
1391 (sys_compare_links,report_difference): Changed prototype
1392 (sparse_diff_file): New function
1393 * src/system.c (sys_compare_uid,sys_compare_gid): New functions
1394 (sys_compare_uid_gid): Removed.
1395 (sys_compare_links): Changed declaration
1396 * src/compare.c (diff_archive): Use sparse_diff_file.
1397
1398 2003-11-16 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1399
1400 Rewritten sparse file handling.
1401
1402 * src/sparse.c: New file. Provides a universal framework
1403 for various methods for sparse files handling.
1404 * src/Makefile.am: Added sparse.c
1405 * src/common.h (struct sp_array,sparsearray,sp_array_size)
1406 (init_sparsearray,fill_in_sparse_array): Removed
1407 (enum dump_status): New data type
1408 (pad_archive,close_diag,open_diag,read_diag_details)
1409 (readlink_diag,savedir_diag,seek_diag_details,stat_diag): New
1410 functions.
1411 (sparse_file_p,sparse_dump_file,sparse_extract_file): New
1412 functions.
1413 (print_header): Changed prototype declaration.
1414 * src/tar.h (struct sp_array): Declaration from common.h
1415 (struct tar_stat_info): New members archive_file_size,
1416 sparse_map_avail,sparse_map.
1417 * src/create.c: Major rewrite.
1418 * src/extract.c: Use new sparse file interface.
1419 * src/compare.c (diff_sparse_files): Temporary placeholder.
1420
1421 * src/buffer.c: Minor changes
1422 * src/tar.c: Likewise.
1423 * src/list.c: Likewise.
1424 * src/misc.c (close_diag,open_diag,read_diag_details)
1425 (readlink_diag,savedir_diag,seek_diag_details,stat_diag): New
1426 diagnostics functions.
1427 * src/incremen.c: Use new diagnostics functions.
1428 * src/names.c: Likewise.
1429
1430 2003-11-14 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1431
1432 * configure.ac: Fixed check for setsockopt
1433
1434 * src/create.c: Do not zero-terminate name field if
1435 the name is exactly 100 characters long.
1436 (write_ustar_long_name): Fixed cheking for unsplittable
1437 names.
1438
1439 2003-11-14 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1440
1441 * src/create.c (start_header): Removed debugging hook
1442 (dump_file): Fixed handling of linkname field.
1443 * src/names.c (safer_name_suffix): If the input
1444 file name ends with a slash, output one should do so
1445 as well.
1446 * doc/tar.texi: Documented --format=ustar
1447
1448 2003-11-14 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1449
1450 * src/tar.h (archive_format): USTAR_FORMAT: New type.
1451 * src/create.c: Added POSIX.1-1988 support.
1452 * src/names.c (safer_name_suffix): Skip leading ./
1453 * src/tar.c: New option --format=ustar forces
1454 POSIX.1-1988 archive format.
1455 * tests/delete03.sh: Updated.
1456 * tests/extrac04.sh: Updated.
1457 * tests/multiv01.sh: Updated.
1458
1459 2003-11-13 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1460
1461 * src/list.c (read_and): Initialize current_stat_info
1462 and extended_header at the start of the loop.
1463 * src/names.c (all_names_found): Check if the argument
1464 contains valid filename. Fixes coredump on `not_a_tar_file'
1465 * src/xheader.c (atime_decoder,gid_decoder,ctime_decoder)
1466 (mtime_decoder,size_decoder,uid_decoder): Use xstrtoumax.
1467 Fixes `pax-big-10g' bug.
1468
1469 2003-11-12 Paul Eggert <eggert@twinsun.com>
1470
1471 Fix some C compatibility bugs reported by Joerg Schilling.
1472
1473 * src/common.h (stripped_prefix_len): Fix misspelling
1474 "stripped_path_len" in declaration.
1475 * src/rmt.c (main): Use "return FOO;" rather than
1476 "exit (FOO);"; we no longer have to worry about
1477 pre-ANSI hosts that mishandled returned values from "main".
1478 * src/tar.c (main): Likewise. This avoids warnings on some
1479 compilers.
1480 * src/system.c: Include signal.h, for 'kill'.
1481 * src/system.h (DEV_BSIZE): Remove.
1482 (DEFAULT_ST_BLKSIZE): New macro.
1483 (ST_BLKSIZE): Use it, instead of DEV_BSIZE.
1484 * src/tar.c (enum): Remove comma just before }.
1485
1486 2003-11-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1487
1488 * src/list.c (decode_header): Initialize st_atime and
1489 st_ctime.
1490
1491 2003-11-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1492
1493 * configure.ac (tar_save_LIBS): Bugfix. Thanks Adrian
1494 Bunk <bunk@fs.tum.de> for reporting.
1495 * doc/tar.texi: Fixed spelling. Thanks Martin Buchholz
1496 <martin@xemacs.org> for spotting.
1497
1498 2003-11-04 Paul Eggert <eggert@twinsun.com>
1499
1500 * src/xheader.c (xhdr_tab): Make it extern, not static, as C89 and
1501 C99 require this.
1502
1503 2003-10-26 Paul Eggert <eggert@twinsun.com>
1504
1505 * src/system.c (sys_spawn_shell): Cast trailing null to (char *).
1506 Bug reported by Christian Weisgerber.
1507
1508 2003-10-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1509
1510 * AUTHORS: Updated
1511 * NEWS: Updated
1512 * src/tar.c (decode_options): Removed superfluous archive format
1513 check
1514 * doc/tar.texi: Documented new features.
1515
1516 2003-10-08 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1517
1518 * NEWS: Updated
1519 * THANKS: Added Wojciech Polak
1520 * configure.ac: Added checks for missing functions. Raised
1521 version number to indicate alpha release.
1522 * lib/Makefile.am: Added missing headers
1523 * lib/waitpid.c: Added missing includes.
1524 * src/extract.c: Likewise.
1525 * src/names.c: Removed spurious includes.
1526 * src/xheader.c: Likewise.
1527 * src/system.h [MSDOS]: Fixed spelling of EACCES. Added
1528 macro overriding broken mkdir prototypes.
1529
1530 2003-10-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1531
1532 * configure.ac: Check for dev_t and ino_t.
1533 * m4/Makefile.am: Added missing files.
1534 * src/system.c: New file.
1535 * src/Makefile.am: Added system.c
1536 * src/common.h: Prototypes for functions from system.c
1537 * src/system.h (SET_BINARY_MODE, ERRNO_IS_EACCESS): New defines
1538 * src/buffer.c: Moved system dependencies to system.c
1539 * src/compare.c: Likewise.
1540 * src/create.c: Likewise.
1541 * src/delete.c: Likewise.
1542 * src/extract.c: Likewise.
1543 * src/rtapelib.c: Likewise.
1544
1545 2003-10-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1546
1547 Implemented --occurrence option.
1548
1549 * NEWS: Updated.
1550 * src/tar.c: New option --occurrence.
1551 * src/common.h (occurrence_option): New global
1552 (struct name): Changed `found' member to `uintmax_t
1553 found_count'.
1554 (names_done): Removed
1555 (all_names_found): Changed prototype.
1556 (ISFOUND,WASFOUND): New macros
1557 * src/delete.c (delete_archive_members): Honor --occurrence
1558 option.
1559 * src/list.c (read_and): Likewise.
1560 * src/names.c: Count number of occurrences of each name in the
1561 archive.
1562 (name_match): Honor --occurrence option.
1563 (names_done): Removed
1564 (all_names_found,names_notfound): Rewritten.
1565
1566 2003-10-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1567
1568 * src/tar.c: Removed extra precaution regarding
1569 subcommand_option == CAT_SUBCOMMAND
1570 * lib/Makefile.am: Updated
1571
1572 2003-10-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1573
1574 * src/common.h (names_done): New function.
1575 * src/names.c: Likewise.
1576 * src/list.c (read_and): Use all_names_found() as `while'
1577 condition.
1578 * src/tar.c: New option --first-copy
1579 * NEWS: Updated
1580
1581 2003-09-24 Paul Eggert <eggert@twinsun.com>
1582
1583 * src/rmt.c (main): Don't translate Copyright string; international
1584 law says the word "Copyright" should be in English.
1585 * src/tar.c (decode_options): Likewise.
1586
1587 2003-09-22 Paul Eggert <eggert@twinsun.com>
1588
1589 * doc/tar.texi (extracting untrusted archives): New section.
1590
1591 * src/common.h (stripped_path_len): Renamed from cut_path_elements.
1592 Return size_t, not pointer, so that we don't have to worry about
1593 violating the C standard by converting char const * to char *.
1594 All callers changed.
1595 * src/names.c (stripped_path_len): Likewise. Strip file system
1596 prefix, too. Count adjacent slashes as if they were one slash;
1597 that is the POSIX standard.
1598
1599 2003-09-17 Paul Eggert <eggert@twinsun.com>
1600
1601 * README-alpha: Document maintainer tool assumptions a bit. GNU
1602 'sed' is no longer required. For GNU m4 1.4, suggest the patch in
1603 Debian bug 211447. Fix minor misspellings/whitespace nits.
1604
1605 * configure.ac (AC_AIX, AC_MINIX): Remove; subsumed by
1606 gl_USE_SYSTEM_EXTENSIONS.
1607
1608 * lib/.cvsignore: Add exit.h, time_r.c, time_r.h.
1609 * m4/.cvsignore: Add restrict.m4, time_r.m4.
1610
1611 2003-09-17 Paul Eggert <eggert@twinsun.com>
1612
1613 * bootstrap: Don't use "for option; do";
1614 Solaris 8 /bin/sh doesn't like that.
1615
1616 2003-09-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1617
1618 * README-alpha: Updated
1619 * bootstrap: Updated
1620
1621 2003-09-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1622
1623 * README-alpha: Updated
1624 * bootstrap: Updated
1625 * po/POTFILES.in: Added src/xheader.c
1626 * src/common.h (cut_path_elements): Added proto.
1627
1628 2003-09-05 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1629
1630 * src/buffer.c: Use ngettext where appropriate.
1631 * src/compare.c: Likewise.
1632 * src/create.c: Likewise.
1633 * src/misc.c: Likewise.
1634 * src/tar.c: Likewise.
1635 * src/update.c: Likewise.
1636
1637 2003-09-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1638
1639 * .cvsignore: Added *.shar.gz
1640 * NEWS: Updated
1641 * TODO: Updated
1642 * src/common.h (strip_path_elements): New variable.
1643 * src/extract.c (extract_archive): Implemented --strip-path
1644 * src/names.c (cut_path_elements): New functon.
1645 * src/tar.c: New option --strip-path=NUM.
1646 (decode_options) Assign boolean values to bool variables.
1647
1648 2003-09-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1649
1650 * src/delete.c: Fixed deletion from the POSIX archives.
1651 * src/list.c (read_header): Minor change.
1652 * src/tar.c (main): Do not check for volume_label_option
1653 if subcommand_option is not CREATE_SUBCOMMAND.
1654 * src/xheader.c (xheader_decode): Store the header as
1655 well (for eventual delete).
1656
1657 * tests/incremen.sh: Explicitly request GNU format. This will
1658 disappear when GNU extended header keywords are working.
1659 * tests/multiv01.sh: Likewise
1660 * tests/volume.sh: Likewise
1661
1662 2003-09-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1663
1664 * src/create.c: Support for "linkpath" extended keyword.
1665 * src/xheader.c (decode_record): Reversed the return
1666 condition.
1667
1668 2003-09-03 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1669
1670 * configure.ac: Allow to redefine the default output format.
1671 * src/tar.c: Use DEFAULT_ARCHIVE_FORMAT macro
1672 (archive_format_string): New function.
1673 (usage): Updated help output.
1674 * README: Updated.
1675 * NEWS: Updated.
1676 * TODO: Updated.
1677
1678 2003-09-02 Paul Eggert <eggert@twinsun.com>
1679
1680 * src/common.h (destroy_stat, xheader_decode, xheader_store,
1681 xheader_read, xheader_finish, xheader_destroy): Add decls;
1682 C99 requires this.
1683
1684 * src/create.c (write_extended): Remove unused local 'bufsize'.
1685
1686 * src/delete.c (delete_archive_members): Handle case of
1687 HEADER_SUCCESS_EXTENDED followed by HEADER_FAILURE.
1688 * src/list.c (read_and): Abort if HEADER_SUCCESS_EXTENDED
1689 occurs, as it's not possible.
1690 * src/update.c (update_archive): Likewise.
1691
1692 Use "const" when possible in new code.
1693 * src/tar.c (struct fmttab.name): Now char const *. All uses changed.
1694 (fmttab): Now const. All uses changed.
1695 * src/xheader.c (struct xhdr_tab.keyword): Now pointer to const.
1696 (struct xhdr_tab.coder, struct xhdr_tab.decoder, locate_handler,
1697 decode_record, xheader_store, xheader_print, code_string, code_time,
1698 code_num, dummy_coder, dummy_decoder, atime_coder, atime_decoder,
1699 gid_coder, gid_decoder, gname_coder, gname_decoder, linkpath_coder,
1700 linkpath_decoder, ctime_coder, ctime_decoder, mtime_coder,
1701 mtime_decoder, path_coder, path_decoder, size_coder, size_decoder,
1702 uid_coder, uid_decoder, uname_coder, uname_decoder):
1703 Use pointers to const when possible.
1704 (xhdr_tab): Now const.
1705
1706 * src/tar.c (fmttab): Avoid GCC warning by not eliding initializers.
1707 (set_archive_format): Report an error if no format name matches,
1708 instead of returning an undefined value.
1709
1710 * src/xheader.c (struct xhdr_tab.decoder, dummy_decoder,
1711 atime_decoder, gid_decoder, gname_decoder, linkpath_decoder,
1712 ctime_decoder, mtime_decoder, path_decoder, size_decoder,
1713 uid_decoder, uname_decoder): Remove unused keyword arg.
1714 All uses changed.
1715
1716 * src/tar.c (set_archive_format): Now static.
1717 * src/xheader.c (xhdr_tab, format_uintmax): Now static.
1718
1719 * src/xheader.c (dummy_coder, dummy_decoder, atime_coder,
1720 atime_decoder, gid_coder, gid_decoder, gname_coder, gname_decoder,
1721 linkpath_coder, linkpath_decoder, mtime_coder, mtime_decoder,
1722 ctime_coder, ctime_decoder, path_coder, path_decoder, size_coder,
1723 size_decoder, uid_coder, uid_decoder, uname_coder, uname_decoder):
1724 Remove forward decls; no longer needed.
1725 (xhdr_tab): Move to end, so that the forward decls aren't needed.
1726 Add a forward declaration.
1727
1728 Use 'bool' in new code, when appropriate.
1729 * src/xheader.c (decode_record): Return bool, not int.
1730 * src/common.h (read_header): Since it accepts bool, change
1731 all callers to use false and true rather than 0 and 1.
1732
1733 * src/xheader.c (decode_record): Fix misspelling in diagnostic
1734 "extended headed" -> "extended header".
1735
1736 GNU coding style fixes.
1737 * src/xheader.c (decode_record, xheader_decode):
1738 Do not use decls like "char *p, *q;".
1739
1740 Minor style fixes.
1741 (xheader_store): Avoid parentheses around object operand of sizeof.
1742
1743 2003-09-03 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1744
1745 * src/create.c (start_header): Store long file names
1746 in "path" keyword of an extended header if in POSIX
1747 mode.
1748 (finish_header): print header before calling write_extended().
1749 * src/list.c (list_archive): Always decode the header. This
1750 is necessary so the extended header is processed and the correct
1751 filename is printed no matter what the state of verbose_option.
1752 * src/xheader.c (xhdr_tab): Reserved GNU keywords (commented out
1753 for the time being).
1754
1755 2003-09-01 Paul Eggert <eggert@twinsun.com>
1756
1757 Update from gnulib, and correct fnmatch to fnmatch-gnu.
1758 * bootstrap (gnulib_modules): Change fnmatch to fnmatch-gnu.
1759 Sort.
1760 * configure.ac (gl_USE_SYSTEM_EXTENSIONS): Use this instead
1761 of AC_GNU_SOURCE.
1762 * lib/.cvsignore: Add alloca.h, stdbool.h. Sort. Append newline.
1763 * lib/Makefile.am (lib_OBJECTS): New macro, for convenience when
1764 copying rules from gnulib module descriptions.
1765 (BUILT_SOURCES, EXTRA_DIST, all-local, alloca.h):
1766 Update from gnulib modules alloca, fnmatch, getline, stdbool.
1767 * m4/.cvsignore: Add utimes-null.m4. Sort.
1768
1769 2003-09-01 Sergey Poznyakoff
1770
1771 Added initial support for creating POSIX headers.
1772
1773 * src/common.h (MAXOCTAL11,MAXOCTAL7): New defines
1774 (string_to_chars): New functions
1775 (struct xheader): Changed structure
1776 (gid_to_gname,gname_to_gid,uid_to_uname,uname_to_uid): Changed
1777 prototypes.
1778 * src/create.c (string_to_chars): New function.
1779 (write_extended): New function
1780 (start_header): Create extended POSIX headers if necessary.
1781 (finish_header): Likewise.
1782 * src/list.c (print_header): Take user/group from
1783 current_stat_info.
1784 * src/names.c (gid_to_gname,gname_to_gid)
1785 (uid_to_uname,uname_to_uid): Changed prototypes.
1786 * src/tar.c: New option --format.
1787 * src/tar.h (OLDGNU_COMPATIBILITY): Removed
1788 (struct extra_header): Removed unused structure.
1789 (union block.extra_header): Removed unused member.
1790 * src/xheader.c: Implemented coder functions.
1791 * bootstrap: Added obstack.
1792 * lib/.cvsignore: Likewise.
1793 * configure.ac: Added 'gl_OBSTACK'
1794 * m4/Makefile.am: Added new files.
1795 * m4/.cvsignore: Likewise.
1796 * TODO: Minor formatting change
1797
1798 2003-08-31 Sergey Poznyakoff
1799
1800 Added initial support for POSIX extended and STAR headers
1801 (only for listing/extracting).
1802
1803 * src/xheader.c: New file.
1804 * src/Makefile.am: Added xheader.c
1805 * src/tar.h (struct star_header): New datatype
1806 (XHDTYPE,XGLTYPE): New defines
1807 (enum archive_format:STAR_FORMAT): New member
1808 (struct tar_stat_info): New datatype.
1809 (union block.star_header): New member.
1810 * src/common.h (orig_file_name,current_file_name)
1811 (current_trailing_slash,current_link_name): Removed variables.
1812 (current_stat_info): New variable
1813 (current_stat): Removed
1814 (extended_header): New variable
1815 (decode_header): Changed prototype.
1816 * src/list.c (decode_header): Added initial support for POSIX extended
1817 and STAR headers.
1818 (skip_member): Check oldgnu_header only if current_format is set
1819 to OLDGNU_FORMAT.
1820 * src/buffer.c: Use current_stat_info
1821 * src/compare.c: Likewise.
1822 * src/create.c: Likewise.
1823 * src/delete.c: Likewise.
1824 * src/incremen.c: Likewise.
1825 * src/mangle.c: Likewise.
1826 * src/update.c: Likewise.
1827 * src/extract.c: Likewise.
1828 (make_directories): Improved check for the existence of the directory
1829 * src/tar.c (destroy_stat): New function.
1830
1831 2003-08-29 Paul Eggert <eggert@twinsun.com>
1832
1833 * NEWS, bootstrap: Drop en_GB locale; it was more trouble than it
1834 was worth (e.g., different users in en_GB disagree about -ize
1835 versus -ise).
1836 * po/en_GB.po: Remove.
1837
1838 2003-07-28 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1839
1840 * TODO: Updated
1841 * NEWS: Updated
1842 * src/tar.c: Removed support for the obsolete command line
1843 options.
1844 * doc/tar.texi: Removed references to the obsolete command
1845 line options.
1846
1847 2003-07-27 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1848
1849 * TODO: Updated
1850 * NEWS: Updated
1851 * doc/tar.texi: Updated
1852 * src/common.h (check_links_option): New variable
1853 (orig_file_name): New variable
1854 (check_links): New proto.
1855 * src/create.c (struct link.nlink): New member
1856 (link_table): Static for the module.
1857 (dump_file): Update `link' member when adding new links
1858 to the link_table.
1859 (check_links): New function.
1860 * src/list.c (print_header): Use orig_file_name.
1861 * src/tar.c: New option --check-links. Changed semantics of
1862 -o to comply to UNIX98 when extracting and to its previous
1863 semantics otherwise.
1864 (main): Call check_links if --check-links. was given.
1865
1866 2003-07-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1867
1868 * src/list.c (print_header): Revised
1869 * NEWS: Started the entry for 1.13.26
1870 * doc/Makefile.am (tar.dvi): Fixed TEXINPUTS value.
1871
1872 2003-07-24 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1873
1874 * .cvsignore: Added to the repository.
1875 * doc/.cvsignore: Likewise.
1876 * lib/.cvsignore: Likewise.
1877 * m4/.cvsignore: Likewise.
1878 * po/.cvsignore: Likewise.
1879 * scripts/.cvsignore: Likewise.
1880 * src/.cvsignore: Likewise.
1881 * tests/.cvsignore: Likewise.
1882
1883 * lib/Makefile.am: Added exitfail.[hc]
1884 * src/misc.c (chdir_do): Fixed call to restore_cwd
1885 * src/buffer.c (flush_read): Fixed behavior on short
1886 reads right after opening the new archive (multiv01.sh test).
1887 (new_volume): Special handling for "-".
1888 * src/list.c (print_header): Print trailing slash if
1889 current_trailing_slash was set (extrac03.sh,extrac04.sh tests).
1890 * tests/multiv01.sh: Minor changes.
1891 * m4/Makefile.am: Added missing files.
1892
1893 2003-07-05 Paul Eggert <eggert@twinsun.com>
1894
1895 Finish the checkin begin yesterday.
1896
1897 * NEWS: Document the user-visible changes installed in the last
1898 two days.
1899
1900 * TODO: New file (actually, resurrected; but with new contents).
1901
1902 * src/list.c (read_and): Give full type for procedure arg.
1903 (read_header): Strip trailing slashes, setting current_trailing_slash.
1904 (tartime): Avoid int overflow when printing year (!).
1905 (print_header): New arg specifying block ordinal. All uses changed.
1906 Print link as 'h' type. Give labels for long links and names.
1907
1908 * src/misc.c (contains_dot_dot): Moved to names.c
1909 (must_be_dot_or_slash): New function.
1910 (safer_rmdir): Use it.
1911 (remove_any_file): Now takes enum as option, not boolean.
1912 Check for (Linux) EISDIR as well as (POSIX) EPERM when attempting
1913 to unlink a directory.
1914 (deref_stat): Accept bool, not int.
1915
1916 * src/names.c (namelist_match): Allow partial matches only if
1917 recursive.
1918 (hash_string_hasher): Renamed from hash_avoided_name.
1919 (hash_string_compare): Renamed from compare_avoided_anames.
1920 (hash_string_insert, hash_string_lookup): New functions.
1921 (add_avoided_name, is_avoided_name): Use them.
1922 (safer_name_suffix): New function.
1923 (contains_dot_dot): Moved here from misc.c. Now returns bool, not int.
1924
1925 * src/rmt.c: Don't include print-copyr.h.
1926 (prepare_input_buffer): New arg FD.
1927 Do not read more than INT_MAX bytes at once,
1928 since it breaks on some brain damaged Tru64 hosts.
1929 Divide size by two
1930 when retrying instead of subtracting 1024; for speed.
1931 (main): Use gettext to translate (C), not print_copyright.
1932
1933 * src/system.h: Include <alloca.h> and <stdbool.h> unconditionally,
1934 now that gnulib handles this.
1935 Include <stddef.h> and <limits.h> unconditionally, now that we assume
1936 C89 or better.
1937 Assume that offsetof is defined in stddef.h.
1938 Do not include <sys/param.h>.
1939 (realloc, lseek): Do not declare.
1940 (HAVE_DECL_VALLOC): Renamed from HAVE_VALLOC.
1941 (CHAR_BIT, CHAR_MAX, UCHAR_MAX, LONG_MAX): Remove
1942 declarations, since we now assume C89 or better.
1943 (PARAMS): Remove, as we now assume C89. All uses changed.
1944 (bindtextdomain, textdomain): Include <gettext.h> to define.
1945 Include <unlocked-io.h>.
1946 (valloc): Define if not defined, and if valloc is not declared.
1947 (xstrdup): Remove decl.
1948
1949 * src/tar.c: Do not include <print-copyr.h>.
1950 Include <getdate.h>.
1951 (get_date): Remove decl.
1952 (ATIME_PRESERVE_OPTION, CHECKPOINT_OPTION, FORCE_LOCAL_OPTION,
1953 IGNORE_FAILED_READ_OPTION, INDEX_FILE_OPTION, NO_OVERWRITE_DIR_OPTION,
1954 NUMERIC_OWNER_OPTION, RECURSIVE_UNLINK_OPTION, REMOVE_FILES_OPTION,
1955 SHOW_OMITTED_DIRS_OPTION, TOTALS_OPTION): New constants.
1956 (long_options, decode_options): Use them.
1957 (OVERWRITE_DIR_OPTION): Remove.
1958 (long_options): New options --index-file, --no-overwrite-dir.
1959 Remove --overwrite-dir option.
1960 (usage): Use PACKAGE_BUGREPORT.
1961 (decode_options): Terminate new argv properly.
1962 Use PACKAGE_NAME, PACKAGE_VERSION.
1963 If verbose, report how we grokked any textual date option.
1964 (main): Add support for index-file.
1965
1966 * tests/Makefile.am: Convert to UTF-8.
1967 (AUTOMAKE_OPTIONS): Remove.
1968 (TESTS): Add delete04.sh, multiv01.sh, options.sh.
1969 (INCLUDES): Remove ../intl.
1970 (LDADD): Don't link libtar.a twice.
1971
1972 * tests/genfile.c: Convert to UTF-8.
1973 Don't include <print-copyr.h>.
1974 (DEFAULT_PATTERN): Renamed from DEFAULT.
1975 (ZEROS_PATTERN): Renamed from ZEROS.
1976 (main): Use gettext to translate (C), not print_copyright.
1977
1978 2003-07-04 Paul Eggert <eggert@twinsun.com>
1979
1980 Revamp to meet current standards of autoconf, automake,
1981 gettext, and gnulib, and incorporate new translations.
1982
1983 * config/config.guess, config/config.sub, config/depcomp,
1984 config/install-sh, config/mdate-sh, config/missing,
1985 config/mkinstalldirs, config/texinfo.texi:
1986 Moved here from parent directory, or from doc.
1987 * config.hin: Renamed from config.h.in.
1988 * config/config.rpath: New file.
1989
1990 * intl: Remove this subdirectory.
1991
1992 * lib/fnmatch_.h: Renamed from lib/fnmatch.hin.
1993
1994 * lib/getstr.c, lib/getstr.h, lib/msleep.c, lib/print-copyr.c,
1995 lib/print-copyr.h, lib/readutmp.c, lib/rename.c, lib/stpcpy.c,
1996 lib/strstr.c, lib/strtoimax.c, lib/strtoll.c, lib/strtoull.c,
1997 lib/strtoumax.c, lib/unicodeio.c, lib/unicodeio.h,
1998 lib/xstrtoimax.c, m4/c-bs-a.m4, m4/ccstdc.m4, m4/check-decl.m4,
1999 m4/decl.m4, m4/jm-mktime.m4, m4/prereq.m4, m4/xstrtoimax.m4,
2000 stamp-h.in: Remove.
2001
2002 * lib/alloca_.h, lib/fnmatch_loop.c, lib/gettext.h, lib/pathmax.h,
2003 lib/safe-write.c, lib/safe-write.h, lib/stdbool_.h, lib/strcase.h,
2004 lib/stripslash.c, lib/unlocked-io.h, lib/xgetcwd.h, m4/alloca.m4,
2005 m4/backupfile.m4, m4/bison.m4, m4/chown.m4, m4/dirname.m4,
2006 m4/dos.m4, m4/exclude.m4, m4/fileblocks.m4, m4/ftruncate.m4,
2007 m4/getdate.m4, m4/getopt.m4, m4/hash.m4, m4/human.m4,
2008 m4/intdiv0.m4, m4/intmax_t.m4, m4/inttypes-pri.m4,
2009 m4/inttypes_h.m4, m4/isc-posix.m4, m4/lchown.m4, m4/lib-ld.m4,
2010 m4/lib-link.m4, m4/lib-prefix.m4, m4/memset.m4, m4/mktime.m4,
2011 m4/modechange.m4, m4/nls.m4, m4/onceonly.m4, m4/pathmax.m4,
2012 m4/po.m4, m4/quote.m4, m4/quotearg.m4, m4/rmdir.m4,
2013 m4/safe-read.m4, m4/safe-write.m4, m4/save-cwd.m4, m4/savedir.m4,
2014 m4/ssize_t.m4, m4/stdbool.m4, m4/stdint_h.m4, m4/strcase.m4,
2015 m4/strtoimax.m4, m4/strtol.m4, m4/strtoll.m4, m4/strtoul.m4,
2016 m4/strtoull.m4, m4/strtoumax.m4, m4/tm_gmtoff.m4, m4/uintmax_t.m4,
2017 m4/unlocked-io.m4, m4/xalloc.m4, m4/xgetcwd.m4, m4/xstrtol.m4,
2018 po/LINGUAS, po/Makevars, po/Rules-quot, po/boldquot.sed,
2019 po/en@boldquot.header, po/en@quot.header, po/en_GB.po,
2020 po/insert-header.sin, po/remove-potcdate.sin, po/stamp-po: New files.
2021
2022 * ABOUT-NLS, INSTALL, lib/addext.c, lib/alloca.c, lib/argmatch.c,
2023 lib/argmatch.h, lib/backupfile.c, lib/backupfile.h, lib/dirname.c,
2024 lib/dirname.h, lib/error.c, lib/exclude.c, lib/exclude.h,
2025 lib/fnmatch.h, lib/full-write.c, lib/full-write.h, lib/getdate.h,
2026 lib/getdate.y, lib/getline.c, lib/getline.h, lib/getopt.c,
2027 lib/getopt.h, lib/getopt1.c, lib/hash.c, lib/hash.h, lib/human.c,
2028 lib/human.h, lib/lchown.c, lib/malloc.c, lib/mktime.c,
2029 lib/modechange.c, lib/modechange.h, lib/quote.c, lib/quote.h,
2030 lib/quotearg.c, lib/quotearg.h, lib/realloc.c, lib/safe-read.c,
2031 lib/safe-read.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
2032 lib/savedir.h, lib/strcasecmp.c, lib/utime.c, lib/xalloc.h,
2033 lib/xgetcwd.c, lib/xmalloc.c, lib/xstrdup.c, lib/xstrtol.c,
2034 lib/xstrtol.h, lib/xstrtoumax.c, m4/codeset.m4, m4/d-ino.m4,
2035 m4/error.m4, m4/fnmatch.m4, m4/getcwd.m4, m4/getline.m4, m4/gettext.m4,
2036 m4/glibc21.m4, m4/iconv.m4, m4/inttypes.m4, m4/lcmessage.m4,
2037 m4/longlong.m4, m4/malloc.m4, m4/mbrtowc.m4, m4/mbstate_t.m4,
2038 m4/progtest.m4, m4/realloc.m4, m4/strerror_r.m4, m4/ulonglong.m4,
2039 m4/utimbuf.m4, m4/utime.m4, m4/utimes.m4, m4/xstrtoumax.m4,
2040 po/Makefile.in.in:
2041 Upgrade to latest version from external source. The file "bootstrap"
2042 now grabs these automatically, so we needn't keep track of them
2043 in this change long any longer.
2044
2045 * Makefile.am (AUTOMAKE_OPTIONS): Remove. Now done by configure.ac.
2046 (SUBDIRS): Remove intl.
2047 * PORTS: Update for star, Macintosh.
2048 * README, README-alpha: Suggest Autoconf 2.57, Automake 1.7.5,
2049 Bison 1.875, gettext 0.12.1.
2050 * THANKS: Add Bernhard Rosenkraenzer, Solar Designer.
2051 * configure.ac (AC_INIT, AM_INIT_AUTOMAKE): Convert to modern form.
2052 (AC_CONFIG_AUX_DIR): New.
2053 (AC_CONFIG_HEADERS): Rename config.h.in to config.hin, to be more
2054 like coreutils.
2055 (AC_PREREQ): Bump from 2.52 to 2.57.
2056 (AC_GNU_SOURCE): New.
2057 (AC_PROG_GCC_TRADITIONAL, AM_C_PROTOTYPES, AC_C_CONST): Remove;
2058 we no longer support K&R C.
2059 (YACC): Remove.
2060 (AC_CHECK_HEADERS): Remove limits.h, poll.h, stdbool.h, stropts.h,
2061 sys/ioccom.h, sys/param.h, sys/time.h, sys/timeb.h, wchar.h, wctype.h.
2062 (AC_MBSTATE_T): Remove.
2063 (HAVE_UTIME_H, HAVE_DECL_FREE, HAVE_DECL_GETGRGID, HAVE_DECL_GETPWUID,
2064 HAVE_DECL_GETENV, HAVE_DECL_MALLOC, HAVE_DECL_STRTOUL,
2065 HAVE_DECL_STRTOULL, HAVE_MKNOD): Remove our special code.
2066 (AM_STDBOOL_H): Add.
2067 (AC_HEADER_TIME, AC_STRUCT_TIMEZONE,
2068 jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Remove.
2069 (AC_CHECK_TYPE): Remove ssize_t.
2070 (gt_TYPE_SSIZE_T): Add.
2071 (jm_AC_PREREQ_XSTRTOUMAX, jm_PREREQ_ADDEXT, jm_PREREQ_ERROR,
2072 jm_PREREQ_HUMAN, jm_PREREQ_QUOTEARG, jm_PREREQ_XGETCWD,
2073 AC_FUNC_ALLOCA, AC_FUNC_CLOSEDIR_VOID, AC_FUNC_STRERROR_R,
2074 AC_FUNC_FNMATCH, AC_FUNC_VPRINTF, AM_FUNC_GETLINE, jm_FUNC_MALLOC,
2075 jm_FUNC_MKTIME, jm_FUNC_REALLOC):
2076 Remove. Switch to gnulib macros like gl_BACKUPFILE instead.
2077 (tar_LDADD): Rename to LIB_CLOCK_GETTIME. All uses changed.
2078 (rmt_LDADD): Rename to LIB_SETSOCKOPT. All uses changed.
2079 (AC_CHECK_FUNCS): Remove fchdir, ftime, getcwd, isascii, nap,
2080 napms, poll, select, strstr, usleep.
2081 (AC_REPLACE_FUNCS): Remove ftruncate, lchown, memset, rename,
2082 rmdir, strcasecmp, strncasecmp, strtol, strtoul.
2083 (AM_GNU_GETTEXT): Use external and need-ngettext options.
2084 (AM_GNU_GETTEXT_VERSION): New.
2085 (AC_OUTPUT): Remove intl/Makefile.
2086
2087 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
2088 ($(srcdir)/tar.info, tar.dvi): Remove obsolete warnings.
2089 * doc/fdl.texi: Update to current GNU version.
2090 * doc/gettext.texi: Update to current coreutils version,
2091 plus a copyright notice.
2092 * doc/tar.texi: Switch to new method for doing copyright notices.
2093 Use @acronym instead of @sc where appropriate.
2094 Remove empty examples. Give a few more examples.
2095
2096 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
2097 (EXTRA_DIST, libtar_a_SOURCES): Switch to gnulib, so that they
2098 are built up in pieces with +=.
2099 (noinst_HEADERS, INCLUDES): Remove.
2100 (BUILT_SOURCES, MAINTAINERCLEANFILES, MOSTLYCLEANFILES): New.
2101 (libtar_a_LIBADD): Use $ rather than @.
2102 (all-local, alloca.h, fnmatch.h, stdbool.h): New rules, from gnulib.
2103
2104 * m4/Makefile.am (EXTRA_DIST): Add alloca.m4, backupfile.m4,
2105 bison.m4, chown.m4, dirname.m4, dos.m4, exclude.m4, fileblocks.m4,
2106 ftruncate.m4, getdate.m4, getopt.m4, hash.m4, human.m4,
2107 intdiv0.m4, intmax_t.m4, inttypes_h.m4, inttypes-pri.m4,
2108 isc-posix.m4, lcown.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
2109 memset.m4, mktime.m4, modechange.m4, nls.m4, onceonly.m4,
2110 pathmax.m4, po.m4, quotearg.m4, quote.m4, rmdir.m4, safe-read.m4,
2111 safe-write.m4, save-cwd.m4, savedir.m4, ssize_t.m4, stdbool.m4,
2112 stdint_h.m4, strcase.m4, strtoimax.m4, strtoll.m4, strtol.m4,
2113 strtoull.m4, strtoul.m4, strtoumax.m4, tm_gmtoff.m4, uintmax_t.m4,
2114 unlocked-io.m4, xalloc.m4, xgetcwd.m4, xstrtol.m4.
2115 Remove c-bs-a.m4, ccstdc.m4, check-decl.m4, decl.m4, jm-mktime.m4,
2116 prereq.m4, xstrtoimax.m4.
2117
2118 * po/POTFILES.in: Remove tests/genfile.c; it doesn't need to
2119 be translated, since it's not a user-visible tool.
2120
2121 * scripts/Makefile.am (AUTOMAKE_OPTIONS): Remove.
2122
2123 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
2124 (INCLUDES): Remove ../intl. Put top-srcdir before ., for
2125 consistency with coreutils.
2126 (LDADD): Link LIBINTL after libtar.a, since
2127 it's now external and should stand by itself.
2128
2129 * src/buffer.c (print_total_written): Adjust to new human.h
2130 interface.
2131 (child_open_for_compress): Do not increase size to BLOCKSIZE.
2132 (open_archive): Open index file name.
2133 Strip trailing slahes from file names.
2134 (flush_write): Set size to 0 if not saving names.
2135 (flush_write, flush_read): Use safer_name_suffix rather than
2136 inline code.
2137
2138 * src/common.h: Include <quote.h>.
2139 (absolute_names_option, atime_preserve_option, backup_option,
2140 block_number_option, checkpoint_option, dereference_option,
2141 force_local_option, ignore_failed_read_option, ignore_zeros_option,
2142 incremental_option, interactive_option, multi_volume_option,
2143 numeric_owner_option, one_file_system_option, recursive_unlink_option,
2144 read_full_records_option, remove_files_option, same_order_option,
2145 show_omitted_dirs_option, sparse_option, starting_file_option,
2146 to_stdout_option, totals_option, touch_option, verify_option,
2147 dev_null_output, now_verifying, we_are_root): Now bool, not int.
2148 (current_trailing_slash, index_file_name, recent_long_name_blocks,
2149 recent_long_link_blocks): New vars.
2150 (NO_OVERWRITE_DIR_OLD_FILES): New constant.
2151 (OVERWRITE_OLD_DIRS): Remove.
2152 (enum remove_option): New enum.
2153 (remove_any_file): Use it as option arg, not int.
2154 (is_avoided_name, contains_dot_dot): Return bool, not int.
2155 (safer_name_suffix): New decl.
2156
2157 * src/compare.c (now_verifying): Now bool, not int.
2158 (fill_in_sparse_array): Move to extract.c. Now returns bool;
2159 all callers changed to test for failure.
2160 (diff_sparse_files): Take size from current_stat, not from param.
2161 (diff_archive): Do not count trailing slashes in archives.
2162 (verify_volume): Test for header failure after loop, not before.
2163
2164 * src/create.c (relativize): Remove; replaced by safer_name_suffix.
2165 All callers changed.
2166 (start_header): Clear devmajor and devminor fields, too.
2167 (finish_header): New arg block_ordinal.
2168 (init_sparsearray): Now extern. Set sp_array_size to
2169 SPARSES_IN_OLDGNU_HEADER if it is zero.
2170 (dump_file): Keep link table as a hash.
2171 Do not count "file changed as we read it" as a failure.
2172
2173 * src/delete.c (recent_long_name_blocks, recent_long_link_blocks):
2174 Move extern decl to common.h.
2175
2176 * src/extract.c (we_are_root): Now bool, not int.
2177 (check_time): Warn about implausibly old time stamps.
2178 (set_stat): Use utimbuf, not stat_info.
2179 (prepare_to_extract): New arg DIRECTORY.
2180 (fill_in_sparse_array): Moved here from compare.c.
2181 (extract_sparse_file): Now returns off_t, giving size left.
2182 Truncate file at end.
2183 (extract_archive): Use safer_name_suffix rather than rolling our own.
2184 Use fill_in_sparse_array rather than rolling our own.
2185 Strip trailing slashes more effectively.
2186 Check for unsafe names.
2187
2188 * src/incremen.c (struct directory): nfs and found are now of type
2189 bool, not int.
2190 (gnu_restore): Now takes directory name as argument, not offset
2191 of directory name in a global. All uses changed.
2192 (CURRENT_FILE_NAME): Remove.
2193
2194 New tests.
2195 * tests/delete04.sh, tests/multiv01.sh, tests/options.sh: New
2196 files.
2197
2198 2002-09-30 Paul Eggert <eggert@twinsun.com>
2199
2200 * src/rmt.c (prepare_input_buffer): Renamed form
2201 prepare_record_buffer. All uses changed. Do not assume that
2202 size_t is the same width as int.
2203
2204 2002-03-29 Paul Eggert <eggert@twinsun.com>
2205
2206 * src/incremen.c (get_directory_contents):
2207 If ignore_failed_read_option, only warn about
2208 get_directory_contents failures. Fix suggested by
2209 Mark Costlow.
2210
2211 2002-01-31 Mark W. Eichin <eichin@thok.org>
2212
2213 * src/buffer.c (child_open_for_compress): Don't try to read
2214 past the end of the buffer.
2215
2216 2001-10-11 Jim Meyering <meyering@lucent.com>
2217
2218 * argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
2219 and quote_n (1, ... to avoid clobbering a buffer.
2220
2221 2001-09-26 Paul Eggert <eggert@twinsun.com>
2222
2223 * NEWS, configure.ac (AM_INIT_AUTOMAKE): Version 1.13.25.
2224
2225 * src/buffer.c (flush_read): Don't diagnose partial blocks before
2226 end of file; just ignore them silently.
2227
2228 * src/list.c (read_header): Don't keep around extended name
2229 and link info indefinitely; keep it only for the next file.
2230 This fixes a bug introduced in 1.13.24, and removes the need
2231 for some static variables. Set recent_long_name and
2232 recent_long_link to zero if there were no long links; this
2233 avoids a violation of ANSI C rules for pointers in delete.c.
2234 * THANKS: Add Christian Laubscher.
2235
2236 2001-09-26 Jim Meyering <meyering@lucent.com>
2237
2238 * doc/tar.texi (Remote Tape Server): is know -> is known
2239
2240 2001-09-25 Paul Eggert <eggert@twinsun.com>
2241
2242 * lib/unicodeio.c (EILSEQ): Include <iconv.h> first, since
2243 <iconv.h> may define EILSEQ (e.g. libiconv). Define a
2244 replacement EILSEQ to be ENOENT, not EINVAL, since callers may
2245 want to distinguish EINVAL and EILSEQ.
2246
2247 2001-09-24 Christophe Kalt <Christophe.Kalt@kbcfp.com>
2248
2249 * src/extract.c (maybe_recoverable):
2250 Treat OVERWRITE_OLD_DIRS like DEFAULT_OLD_FILES.
2251
2252 2001-09-22 Paul Eggert <eggert@twinsun.com>
2253
2254 * NEWS, configure.ac (AM_INIT_AUTOMAKE): Version 1.13.24.
2255
2256 * ABOUT-NLS, intl/*: Update to gettext-0.10.40, replacing LGPL
2257 with GPL.
2258
2259 * INSTALL, mkinstalldirs: Update to autoconf 2.52 version.
2260 * PORTS: Add copyright notice, 'star' reference.
2261 * README-alpha: Add copyright notice, autoconf 2.52 patch.
2262 * THANKS: Add Christophe Kalt.
2263 * config.sub: Upgrade to 2001-09-14 version.
2264
2265 * configure.ac (ALL_LINGUAS): Add ko.
2266 * po/ko.po: Resurrected file.
2267
2268 * doc/convtexi.pl: Add coding advice for Emacs.
2269
2270 * doc/getdate.texi: Add copyright notice.
2271
2272 * doc/mdate-sh: Upgrade to automake 1.5 version.
2273
2274 * doc/tar.texi (extracting files): Mention --to-stdout.
2275 (Option Summary, Dealing with Old Files): New option --overwrite-dir.
2276 (Overwrite Old Files): Likewise.
2277
2278 * lib/Makefile.am (noinst_HEADERS):
2279 Remove copysym.h. Add print-copyr.h, unicodeio.h.
2280 (libtar_a_SOURCES): Remove copysym.c, Add print-copyr.c, unicodeio.c.
2281
2282 * lib/copysym.c, lib/copysym.h: Remove.
2283 * lib/print-copyr.c, lib/print-copyr.h, lib/unicodeio.c,
2284 lib/unicodeio.h: New files.
2285
2286 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
2287 lib/mktime.c, lib/strtoll.c: Switch from LGPL to GPL.
2288
2289 * lib/quotearg.c (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
2290 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
2291
2292 * m4/Makefile.am (EXTRA_DIST): Remove isc-posix.m4.
2293 * m4/isc-posix.m4: Remove.
2294
2295 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit.
2296
2297 * po/POTFILES.in: Add copyright notice.
2298
2299 * src/Makefile.am (LDADD): Like libtar.a before @INTLLIBS@ as
2300 well as after.
2301 * tests/Makefile.am (LDADD): Likewise.
2302
2303 * src/buffer.c (write_archive_buffer, close_archive):
2304 If an archive is a socket, treat it like a FIFO.
2305 (records_read, records_written): New vars.
2306 (write_archive_to_stdout): Now bool, not int.
2307 (open_archive, flush_write, flush_read): Keep records_read and
2308 records_written up to date.
2309
2310 * src/common.h (enum old_files): New value OVERWRITE_OLD_DIRS.
2311 (write_archive_to_stdout): Now bool, not int.
2312 (enum read_header): New value HEADER_SUCCESS_EXTENDED.
2313 (read_header): Now takes bool arg. Existing callers modified
2314 to pass 0, unless otherwise specified.
2315
2316 * src/delete.c (records_read): Remove; now a global.
2317 (acting_as_filter): Now bool, not int.
2318 (recent_long_name, recent_long_link, recent_long_name_blocks,
2319 recent_long_link_blocks, records_read, records_written): New decls.
2320 (records_skipped): New var.
2321 (move_archive): Don't divide by zero if arg is 0.
2322 Use the above vars to compute how far to move.
2323 (write_recent_blocks): New function.
2324 (delete_archive_member): Pass 1 to read_header, so that it doesn't
2325 read more than 1 block. Handle resulting HEADER_SUCCESS_EXTENDED code.
2326 Keep track of how many records have been skipped.
2327 Let the buffer code count records.
2328 When copying a header, copy any extended headers that came before it.
2329
2330 * src/extract.c (extract_archive): When marking a directory to be
2331 updated after symlinks, stat all directories after it in the
2332 delayed-set-stat list too, since they will be checked after
2333 symlinks. Add support for --overwrite-dir.
2334
2335 * src/list.c (recent_long_name, recent_long_link,
2336 recent_long_name_blocks, recent_long_link_blocks): New vars.
2337 (read_and): Pass 0 to read_header.
2338 (read_header): New arg RAW_EXTENDED_HEADERS. Store away extended
2339 headers into new vars. Null-terminate incoming symbolic links.
2340
2341 * src/rmt.c: Include print-copyr.h, not copysym.h.
2342 (main): Use print_copyright, not copyright_symbol.
2343 * src/tar.c (decode_options): Likewise.
2344 (OVERWRITE_DIR_OPTION): New constant.
2345 (long_options, usage, decode_options): Add --overwrite-dir.
2346
2347 * src/tar.h: Put copyright notice into documentation.
2348
2349 * tests/Makefile.am (TESTS): Add delete03.sh.
2350 * tests/delete03.sh: New file.
2351
2352 * tests/genfile.c: Include print-copyr.h, not copysym.h.
2353 (main): Use print_copyright, not copyright_symbol.
2354 Include <argmatch.h>.
2355 (pattern_strings): Remove.
2356 (pattern_args, pattern_types): New constants.
2357 (main): Use XARGMATCH, not argmatch.
2358
2359 2001-09-20 Jim Meyering <meyering@lucent.com>
2360
2361 * lib/xstrtol.c (strtoimax): Guard declaration with
2362 `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
2363 The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
2364 have their own, conflicting declaration of strtoimax in sys/inttypes.h.
2365 (strtoumax): Likewise, for completeness (it wasn't necessary).
2366 * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
2367 Check for declaration of strtoimax.
2368 * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
2369 Check for declaration of strtoumax.
2370
2371 2001-09-16 Paul Eggert <eggert@twinsun.com>
2372
2373 * fnmatch.m4 (jm_FUNC_FNMATCH): Fix typo in previous patch: yes -> no.
2374
2375 2001-09-14 Paul Eggert <eggert@twinsun.com>
2376
2377 * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.23.
2378
2379 * README-alpha: Describe automake patch.
2380
2381 * configure.ac (LIBOBJS):
2382 Remove automake 1.4 workaround, as we're using 1.5 now.
2383 (USE_INCLUDED_LIBINTL): New AC_DEFINE.
2384
2385 * lib/copysym.c: Include stddef.h, for size_t.
2386 Include langinfo.h if needed.
2387 Use locale_charset only if USE_INCLUDED_LIBINTL;
2388 if not, use nl_langinfo (CODESET) if available.
2389
2390 2001-09-13 Paul Eggert <eggert@twinsun.com>
2391
2392 * config.guess, config.sub: Sync with canonical versions.
2393
2394 * configure.ac (jm_PREREQ_XGETCWD): Add.
2395
2396 * lib/Makefile.am (noinst_HEADERS): Add copysym.h.
2397 (libtar_a_SOURCES): Add copysym.c.
2398 * copysym.c, copysym.h: New files.
2399
2400 * lib/error.c: Sync with fileutils version.
2401
2402 * m4/Makefile.am (EXTRA_DIST): Add getcwd.m4; remove uintmax_t.m4.
2403 * m4/getcwd.m4: New file.
2404 * m4/uintmax_t.m4: Remove.
2405
2406 * m4/gettext.m4 (AM_WITH_NLS):
2407 Fix bug with calculating version of Bison 1.29.
2408 Reported by Karl Berry.
2409
2410 * src/Makefile.am (datadir): Remove.
2411
2412 * src/rmt.c: Include copysym.h.
2413 (main): Use copyright_symbol to translate copyright notice,
2414 instead of gettext.
2415 * src/tar.c: Likewise.
2416 * tests/genfile.c: Likewise.
2417
2418 * src/system.h (MB_LEN_MAX): New symbol.
2419
2420 2001-09-11 Paul Eggert <eggert@twinsun.com>
2421
2422 * src/extract.c (struct delayed_set_stat): New member
2423 'after_symlinks'.
2424 (delay_set_stat): Initialize it to 0.
2425 (set_mode): New arg current_stat_info. Use it (if nonnull) to avoid
2426 taking an extra stat ourselves. All callers changed.
2427 (set_stat): Likewise.
2428 (apply_nonancestor_delayed_set_stat): New arg 'after_symlinks'.
2429 If false, stop when encountering a struct whose 'after_symlinks'
2430 member is true. Otherwise, go through all structures but check
2431 them more carefully. All callers changed.
2432 (extract_archive): When extracting a deferred symlink, if its parent
2433 directory's status needs fixing, then mark the directory as needing
2434 to be fixed after symlinks.
2435 (extract_finish): Fix status of ordinary directories, then apply
2436 delayed symlinks, then fix the status of directories that are
2437 ancestors of delayed symlinks.
2438
2439 * src/rtapelib.c (rexec):
2440 Remove declaration; it ran afoul of prototypes on Crays.
2441 Reported by Wendy Palm of Cray.
2442
2443 2001-09-06 Paul Eggert <eggert@twinsun.com>
2444
2445 * lib/strtoimax.c (HAVE_LONG_LONG):
2446 Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
2447 (strtoimax): Use sizeof (long), not
2448 sizeof strtol (ptr, endptr, base),
2449 to work around bug in IBM C compiler.
2450
2451 2001-09-04 Paul Eggert <eggert@twinsun.com>
2452
2453 * lib/xgetcwd.c: Include "xalloc.h".
2454 (xgetcwd): Do not return NULL when memory is exhausted; instead,
2455 report an error and exit.
2456
2457 * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
2458 (jm_PREREQ): Use it.
2459
2460 2001-09-03 Paul Eggert <eggert@twinsun.com>
2461
2462 * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
2463 (jm_PREREQ_XGETCWD): New macro.
2464
2465 * lib/exclude.c (fnmatch_no_wildcards):
2466 Fix typo that caused us to do case-folding
2467 search even when that was not desired. This occurred only in the
2468 no-wildcard case.
2469
2470 * lib/xgetcwd.c: Include pathmax.h if not HAVE_GETCWD.
2471 Do not include xalloc.h.
2472 (INITIAL_BUFFER_SIZE): New symbol.
2473 Do not use xmalloc / xrealloc, since the caller is responsible for
2474 handling errors. Preserve errno around `free' during failure.
2475 Do not overrun buffer when using getwd.
2476
2477 * lib/xgetcwd.c (xgetcwd):
2478 Use HAVE_GETCWD_NULL, not defined __GLIBC__ && __GLIBC__ >= 2,
2479 to decide whether to use getcwd (NULL, 0).
2480
2481 2001-09-02 Paul Eggert <eggert@twinsun.com>
2482
2483 * lib/xgetcwd.c: Fix typo in local var; from Jim Meyering.
2484
2485 2001-09-01 Jim Meyering <meyering@lucent.com>
2486
2487 * exclude.c: Use `""', not `<>' to #include non-system header files.
2488 (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
2489 and strncasecmp as r-values. Unixware didn't have declarations.
2490
2491 2001-08-31 Jim Meyering <meyering@lucent.com>
2492
2493 * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
2494 Use an initial, malloc'd, buffer of length 128 rather than
2495 a statically allocated one of length 1024.
2496
2497 2001-08-30 Paul Eggert <eggert@twinsun.com>
2498
2499 * lib/utime.c: Include full-write.h.
2500 * lib/xstrtol.c (strtoimax): New decl.
2501
2502 2001-08-29 Paul Eggert <eggert@twinsun.com>
2503
2504 * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.22.
2505
2506 * src/create.c (dump_file): Relativize link names before dumping.
2507 This fixes a bug reported by Jose Pedro Oliveira.
2508
2509 * src/create.c (dump_file): Use offsetof when computing sizes for
2510 struct hack; this avoids wasted space in some cases.
2511 * src/incremen.c (note_directory, find_directory): Likewise.
2512 * src/names.c (name_gather, addname): Likewise.
2513
2514 * src/extract.c (extract_archive): Use strcpy, not memcpy,
2515 for consistency with other code that does similar things.
2516 * src/names.c (name_gather): Likewise.
2517
2518 * src/names.c (read_name_from_file, name_next, name_gather,
2519 add_hierarchy_to_namelist): Avoid quadratic behavior when
2520 reallocating buffers. Check for buffer size overflow.
2521 (addname): Avoid unnecessary clearing of memory.
2522
2523 2001-08-29 "Jan D." <Jan.Djarv@mbox200.swipnet.se>
2524
2525 * src/extract.c (delay_set_stat): Fix off-by-one error in file
2526 name size allocation that caused core dumps.
2527
2528 2001-08-28 Paul Eggert <eggert@twinsun.com>
2529
2530 * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.21.
2531
2532 * configure.ac (GNU_SOURCE): Define to 1, not /**/.
2533 (major_t, minor_t, ssize_t): Use new-style AC_CHECK_TYPE.
2534 (daddr_t): Remove; no longer used.
2535 (jm_PREREQ_HUMAN): Add.
2536
2537 * acconfig.h: Remove; no longer needed.
2538
2539 * config.guess, config.sub:
2540 New files, from automake 1.5. Gettext 0.10.39 needs them.
2541 * depcomp, missing, mkinstalldirs: Upgrade to automake 1.5.
2542
2543 * Makefile.am (AUTOMAKE_OPTIONS): Add dist-bzip2.
2544 (SUBDIRS): Put intl before lib, as gettext requires.
2545
2546 * ABOUT-NLS: Upgrade to gettext 0.10.39.
2547 * intl: Upgrade entire directory to gettext 0.10.39.
2548 * m4/codeset.m4, m4/glibc21.m4, m4/iconv.m4:
2549 New files, from gettext 0.10.39.
2550 * m4/gettext.m4, m4/isc-posix.m4, m4/lcmessage.m4, m4/progtest.m4,
2551 Upgrade to gettext 0.10.39,
2552 * po/Makefile.in.in: Likewise, except fix a typo in its copying
2553 permissions.
2554 * po/cat-id-tbl.c, po/stamp-cat-id:
2555 Remove; no longer used by gettext 0.10.39.
2556 * po/ChangeLog: New file.
2557
2558 * doc/Makefile.am (EXTRA_DIST): Add freemanuals.texi.
2559 $(srcdir)/tar.texi: Likewise.
2560 * doc/freemanuals.texi: New file.
2561 * doc/tar.texi (Free Software Needs Free Documentation): New appendix.
2562 `fileds' -> `fields'
2563 * doc/texinfo.tex: Upgrade to version 2001-07-25.07.
2564
2565 * lib/Makefile.am (EXTRA_DIST): Add strtoll.c, strtoimax.c.
2566 (noinst_HEADERS): Add quote.h.
2567 (libtar_a_SOURCES): Add quote.c, xstrtoimax.c.
2568
2569 * lib/exclude.c: Fix typo in '#include <stdint.h>' directive.
2570
2571 * lib/full-write.c, lib/savedir.c: Comment fix.
2572
2573 * lib/pathmax.h: Remove.
2574
2575 * lib/quote.c, lib/quote.h: New files.
2576
2577 * lib/xgetcwd.c: Don't include pathmax.h.
2578 Include stdlib.h and unistd.h if available.
2579 Include xalloc.h.
2580 (xmalloc, xstrdup, free): Remove decls.
2581 (xgetcwd): Don't assume sizes fit in unsigned.
2582 Check for overflow when computing sizes.
2583 Simplify reallocation code.
2584
2585 * lib/xmalloc.c: Quote failure tests.
2586
2587 * lib/strtoumax.c, lib/xstrtoimax.c: New files.
2588
2589 * lib/strtoimax.c: Renamed from strtouxmax.c. Make it more
2590 similar to strtol.c.
2591 (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.
2592 (verify): New macro.
2593 (strtoumax, uintmax_t, strtoull, strtol): Remove.
2594 (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
2595 (strtoimax): Renamed from strtoumax. All uses of unsigned values
2596 changed to signed values. Check sizes at compile-time, not
2597 run-time. Prefer strtol to strtoll if both work.
2598 (main): Remove.
2599
2600 * lib/xstrtol.h (xstrtoimax): New decl.
2601
2602 * m4/Makefile.am (EXTRA_DIST):
2603 Add codeset.m4, glibc21.m4, iconv.m4, inttypes.m4,
2604 longlong.m4, xstrtoimax.m4.
2605
2606 * m4/inttypes.m4 (jm_AC_HEADER_INTTYPES_H):
2607 Remove; now done by autoconf.
2608 (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T): Replace with
2609 Use AC_CHECK_TYPE instead of merely looking for the header.
2610
2611 * m4/uintmax_t.m4: Use shorter comment.
2612
2613 * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
2614 Quote first arg of AC_DEFUN.
2615 Require jm_AC_TYPE_INTMAX_T and jm_AC_TYPE_LONG_LONG since they
2616 is needed to parse the include file.
2617 Simplify logic behind the args to AC_REPLACE.
2618
2619 * src/Makefile.am (OMIT_DEPENDENCIES): Remove.
2620
2621 * src/ansi2knr.1, src/ansi2knr.c: Remove; wasn't being used.
2622
2623 * src/rmt.c (main):
2624 Use "Copyright %d" to simplify the translator's job in the future.
2625 Advise translator about circle-C.
2626 * src/tar.c: (decode_options): Likewise.
2627 * tests/genfile.c (main): Likewise.
2628
2629 2001-08-28 Jim Meyering <meyering@lucent.com>
2630
2631 * lib/argmatch.c: Include "quote.h".
2632 (argmatch_invalid): Quote the context.
2633
2634 * lib/dirname.c (dir_name): Fix typo on PC platforms.
2635
2636 * lib/backupfile.c, lib/basename.c, lib/dirname.c, lib/strtoul.c:
2637 Use single-quote for local .h files.
2638
2639 * lib/error.h (__attribute__): Don't depend on __STRICT_ANSI__.
2640
2641 * lib/getopt.c, lib/getopt.h, lib/getopt1.c: Upgrade to recent
2642 glibc versions.
2643
2644 * lib/getdate.y (get_date): Initialize tm_isdst to -1 before
2645 invoking mktime the last time.
2646
2647 * lib/pathmax.h: Use #if rather than #ifdef for HAVE_UNISTD_H.
2648
2649 * lib/rename.c: Major rewrite by Volker Borchert to use system
2650 rename function, but to work around problems with trailing
2651 slashes.
2652
2653 * lib/strtoll.c: New file, from glibc.
2654 * lib/strtoul.c: Update from glibc.
2655
2656 * lib/strtouxmax.c: Renamed from lib/strtoumax.c.
2657 Add support for signed numbers, too.
2658 (strtoul, strtoull): Do not declare if STRTOUXMAX_UNSIGNED
2659 is not defined.
2660 (strtol, strtoll): Declare as needed, if STRTOUXMAX_UNSIGNED is
2661 not defined.
2662 (strtoumax, uintmax_t, strtoull, strtoul): New macros.
2663 (main): Use generic names in debugging output.
2664 * lib/strtoimax.c: Plus add the following changes of my own:
2665 (main): Use accurate names in debugging output.
2666
2667 * lib/xgetcwd.c (xgetcwd): Use getcwd if glibc 2 or later.
2668 Don't use PATH_MAX.
2669
2670 * m4/c-bs-a.m4, m4/check-decl.m4, m4/d-ino.m4, m4/error.m4,
2671 m4/getline.m4, m4/jm-mktime.m4, m4/malloc.m4, m4/mbrtowc.m4,
2672 m4/mbstate_t.m4, m4/realloc.m4, m4/uintmax_t.m4, m4/utimbuf.m4,
2673 m4/utime.m4, m4/utimes.m4:
2674 Quote the first argument in each use of AC_DEFUN.
2675
2676 * m4/getline.m4: Don't use string.h.
2677
2678 * m4/inttypes.m4, m4/longlong.m4, m4/xstrtoimax.m4: New files.
2679
2680 * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): @%:@ -> #.
2681
2682 2001-08-27 Paul Eggert <eggert@twinsun.com>
2683
2684 * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.20.
2685
2686 The biggest change is the new --exclude semantics and options.
2687 The basic idea was suggested by Gerhard Poul; thanks!
2688
2689 * NEWS: Describe new --exclude semantics and options, and bug fixes.
2690 * README: ignfail.sh fails on some NFS hosts.
2691 * NEWS, README, lib/xstrtol.h: Add copyright notice.
2692
2693 * Makefile.am (ACLOCAL_AMFLAGS): Add -I m4.
2694 (M4DIR, ACINCLUDE_INPUTS, $(srcdir)/acinclude.m4):
2695 Remove; the automake bug has been fixed.
2696 * acinclude.m4: Remove.
2697
2698 * configure.ac: Renamed from configure.in.
2699 (AC_PREREQ): Bump from 2.13 to 2.52.
2700 (ALL_LINGUAS): Add id, tr. Remove ko, as po/ko.po (dated
2701 1997-05-30) has an encoding error.
2702 (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf.
2703 (AC_FUNC_FNMATCH): Use AC_CONFIG_LINKS, not AC_LINK_FILES.
2704
2705 * doc/fdl.texi: Update to current GNU version.
2706
2707 * doc/tar.texi: Put leading '*' in direntry.
2708 Accommodate new gfdl sectioning.
2709 New option --recursion (the default) that is the inverse of
2710 --no-recursion.
2711
2712 New options --anchored, --ignore-case, --wildcards,
2713 --wildcards-match-slash, and their negations (e.g., --no-anchored).
2714 Along with --recursion and --no-recursion, these control how exclude
2715 patterns are interpreted. The default interpretation of exclude
2716 patterns is now --no-anchored --no-ignore-case --recursion
2717 --wildcards --wildcards-match-slash.
2718
2719 * lib/Makefile.am (OMIT_DEPENDENCIES): Remove.
2720
2721 * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
2722 (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
2723 (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
2724 Include if available.
2725 (<xalloc.h>): Include
2726 (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
2727 (verify): New macro. Use it to verify that EXCLUDE macros do not
2728 collide with FNM macros.
2729 (struct patopts): New struct.
2730 (struct exclude): Use it, as exclude patterns now come with options.
2731 (new_exclude): Support above changes.
2732 (new_exclude, add_exclude_file):
2733 Initial size must now be a power of two to simplify overflow checking.
2734 (free_exclude, fnmatch_no_wildcards): New function.
2735 (excluded_filename): No longer requires options arg, as the options
2736 are determined by add_exclude. Now returns bool, not int.
2737 (excluded_filename, add_exclude):
2738 Add support for the fancy new exclusion options.
2739 (add_exclude, add_exclude_file): Now takes int options arg.
2740 Check for arithmetic overflow when computing sizes.
2741 (add_exclude_file): xrealloc might modify errno, so don't
2742 realloc until after errno might be used.
2743
2744 * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
2745 New macros.
2746 (free_exclude): New decl.
2747 (add_exclude, add_exclude_file): Now takes int options arg.
2748 (excluded_filename): No longer requires options arg, as the options
2749 are determined by add_exclude. Now returns bool, not int.
2750
2751 * lib/prepargs.c: Include <string.h>; required for C99 since
2752 we use strlen.
2753
2754 * lib/quotearg.c:
2755 BSD/OS 4.1 wchar.h requires FILE and struct tm to be declared.
2756
2757 * lib/xstrtol.h (_DECLARE_XSTRTOL): Improve quality of
2758 diagnostic for LONGINT_INVALID_SUFFIX_CHAR.
2759
2760 * m4/Makefile.am (EXTRA_DIST): Add check-decl.m4, mbrtowc.m4.
2761 Remove inttypes_h.m4, largefile.m4, mktime.m4.
2762
2763 * m4/inttypes_h.m4, m4/largefile.m4, m4/mktime.m4: Remove;
2764 subsumed by Autoconf 2.50.
2765
2766 * m4/error.m4: Upgrade to serial 2.
2767
2768 * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Upgrade to serial 4, but
2769 remove test for GNU C library. It's not correct, as some
2770 older glibcs are buggy.
2771
2772 * m4/getline.m4, m4/malloc.m4: Upgrade to serial 4.
2773
2774 * m4/prereq.m4: Upgrade to serial 20, but then:
2775 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
2776 (jm_PREREQ_EXCLUDE): New macro.
2777 (jm_PREREQ_HUMAN): Remove jm_AC_HEADER_INTTYPES_H, as it is subsumed
2778 by autoconf 2.5x.
2779
2780 * m4/realloc.m4: Upgrade to serial 4.
2781
2782 * m4/strerror_r.m4: Revert to serial 1002.
2783
2784 * m4/uintmax_t.m4: Upgrade to autoconf 2.5x.
2785
2786 * m4/utimes.m4: Upgrade to latest version (still "serial 3").
2787
2788 * m4/xstrtoumax.m4: Upgrade to serial 3, but then:
2789 (jm_AC_PREREQ_XSTRTOUMAX): Remove jm_AC_HEADER_INTTYPES_H, as
2790 it is now subsumed by autoconf. Add inttypes.h.
2791
2792 * po/cs.po, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
2793 po/it.po, po/pl.po, po/sl.po, po/sv.po: Sync with translation project.
2794
2795 * src/buffer.c (new_volume): Stop if the script exits with an error.
2796
2797 * src/common.h (excluded_with_slash, excluded_without_slash):
2798 Remove, replacing by:
2799 (excluded): New decl.
2800 (link_error): New decl.
2801 (excluded_name): Now returns bool.
2802
2803 * src/extract.c:
2804 (struct delayed_symlinks, extract_archive, apply_delayed_symlinks):
2805 Support hard links to symbolic links.
2806
2807 (struct delayed_symlink): Remove 'names' member, replacing it with
2808 'sources' and 'target' member. All uses changed.
2809
2810 (struct string_list): New type.
2811
2812 (delayed_set_stat, extract_archive): Use offsetof when computing sizes
2813 for struct hack; this avoids wasted space in some cases.
2814
2815 (extract_archive): Fix test for absolute pathnames and/or "..".
2816 Use link_error to report errors for links.
2817 Remove redundant trailing '/' at "really_dir", for all uses, not
2818 just before invoking mkdir.
2819 If overwriting old files, do not worry so much about existing
2820 directories.
2821 Fix mode computation in the case where the directory exists.
2822
2823 (apply_delayed_symlinks): If we can't make a hard link to a symbolic
2824 link, make a copy of the symbolic link.
2825
2826 * src/incremen.c (get_directory_contents):
2827 If ignore_failed_read_option, only warn about
2828 stat failures.
2829
2830 * src/list.c (from_header): Do not issue a diagnostic if TYPE is zero.
2831 However, check for error even for '-' or '+' case.
2832
2833 (print_header): Try parsing uids and gids as unsigned integers first,
2834 and as a uid_t or gid_t only if that fails. This adds support for
2835 listing positive uids and gids that are greater than UID_MAX and
2836 GID_MAX.
2837
2838 * src/misc.c (link_error): New function.
2839
2840 * src/names.c (collect_and_sort_names):
2841 If ignore_failed_read_option, only warn about
2842 stat errors.
2843
2844 (excluded_name): Now returns bool. Simplify, as the fancy
2845 features are now all in excluded_filename.
2846
2847 * src/rtapelib.c (base_name): Remove decl, as system.h now
2848 declares it.
2849
2850 * src/system.h: Include stddef.h if available.
2851 (offsetof): Declare if stddef.h doesn't.
2852
2853 Include <dirname.h>.
2854 (FILESYSTEM_PREFIX_LEN, ISSLASH): Remove; now defined by dirname.h.
2855
2856 * src/tar.c (ANCHORED_OPTION, IGNORE_CASE_OPTION,
2857 NO_ANCHORED_OPTION, NO_IGNORE_CASE_OPTION, NO_WILDCARDS_OPTION,
2858 NO_WILDCARDS_MATCH_SLASH_OPTION, WILDCARDS_OPTION,
2859 WILDCARDS_MATCH_SLASH_OPTION):
2860 New enum values.
2861
2862 (long_options, usage, decode_options): Add support for --anchored,
2863 --ignore-case, --no-anchored, --no-ignore-case, --no-wildcards,
2864 --no-wildcards-match-slash, --recursion, --wildcards,
2865 --wildcards-match-slash.
2866
2867 (decode_options): Implement the new way of interpreting exclude
2868 patterns.
2869
2870 (usage): --newer-mtime takes a DATE operand. DATE may be a file name.
2871
2872 (OPTION_STRING, decode_options): Add -I, -y. Currently these options
2873 just print error messages suggesting alternatives.
2874
2875 (add_filtered_exclude): Remove.
2876
2877 * tests/Makefile.am (TESTS): Alphabetize, except put version.sh first.
2878
2879 * tests/extrac04.sh (out): Remove
2880 directory/subdirectory/file1, as the new semantics for
2881 --exclude exclude it.
2882
2883 * tests/genfile.c (main): Don't use non-ASCII char in msgid.
2884
2885 2001-08-12 Paul Eggert <eggert@twinsun.com>
2886
2887 * lib/addext.c (<errno.h>): Include.
2888 (errno): Declare if not defined.
2889 (addext): Work correctly on the Hurd, where pathconf returns -1 and
2890 leaves errno alone, because there is no limit. Also, work even if
2891 size_t is narrower than long.
2892
2893 2001-07-08 Paul Eggert <eggert@twinsun.com>
2894
2895 * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
2896
2897 2001-05-10 Paul Eggert <eggert@twinsun.com>
2898
2899 * lib/addext.c (ISSLASH, base_name): Remove decls; now in dirname.h.
2900 Include <backupfile.h> and <dirname.h> after size_t is defined.
2901 (addext): Use base_len to trim redundant trailing slashes instead of
2902 doing it ourselves.
2903
2904 * lib/backupfile.c (ISSLASH, base_name):
2905 Remove decls; now in dirname.h.
2906 Include <argmatch.h>, <backupfile.h>, <dirname.h> after size_t
2907 is defined.
2908 (find_backup_file_name): Rename locals to avoid new functions.
2909 Use base_len instead of rolling it ourselves.
2910 Work even if dirlen is 0.
2911 Use a dir of '.' if given the empty string.
2912
2913 * lib/basename.c:
2914 Do not include <stdio.h>, <assert.h>; no longer needed.
2915 (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Remove; now in dirname.h.
2916 Include <string.h>, <dirname.h>.
2917 (base_name): Allow file names ending in slashes, other than names
2918 that are all slashes. In this case, return the basename followed
2919 by the slashes.
2920
2921 * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
2922 (FILESYSTEM_PREFIX_LEN, ISSLASH): Remove; now in dirname.h.
2923 (dir_len): Renamed from dirlen.
2924 All callers changed.
2925
2926 * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
2927 New macros.
2928 (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
2929
2930 2001-02-16 Paul Eggert <eggert@twinsun.com>
2931
2932 * lib/quotearg.c (mbrtowc, mbrtowc, mbsinit):
2933 Do not declare or define if HAVE_MBRTOWC,
2934 since the test for HAVE_MBRTOWC now requires proper declarations.
2935
2936 * lib/alloca.c (malloc): Undef before defining.
2937
2938 2001-02-13 Paul Eggert <eggert@twinsun.com>
2939
2940 * src/compare.c (read_and_process): Use off_t for size.
2941 From Maciej W. Rozycki.
2942
2943 2001-01-26 Paul Eggert <eggert@twinsun.com>
2944
2945 * lib/quotearg.c: Include stddef.h. From Jim Meyering.
2946
2947 2001-01-12 Paul Eggert <eggert@twinsun.com>
2948
2949 * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.19.
2950
2951 * lib/savedir.h (savedir): Remove size arg.
2952
2953 * doc/tar.texi: Add @setchapternewpage odd.
2954 Remove -I as an alias for -T, for now.
2955 Add @dircategory.
2956 Update copyright. Remove "Published by".
2957 Dates beginning with / or . are taken to be file names.
2958
2959 * src/tar.c (<time.h>): Do not include;
2960 (time): Do not declare.
2961 (usage): Remove -I as an alias for -T.
2962 (OPTION_STRING): Remove -I.
2963 (decode_options): Dates that look like an absolute path name,
2964 or that start with '.', are presumed to be file names whose
2965 dates are taken.
2966 Remove 'I' as an aliase for 'T'.
2967 Update copyright.
2968
2969 * src/extract.c (<time.h>): Do not include; system.h now does this.
2970 (make_directories): Skip filesystem prefixes.
2971 Don't assume '/' is the only separator.
2972 (extract_sparse_file): Use new full_write semantics.
2973 On write error, return instead of invoking skip_file.
2974 Do not free sparsearray; caller does this now.
2975 (apply_nonancestor_delayed_set_stat): Do not assume '/' is the only
2976 separator.
2977 (extract_archive): Don't assume file name lengths fit in int.
2978 Report what got stripped from member name; it might be more than '/'.
2979 Use new full_write semantics.
2980 Do not pass redundant trailing "/" to mkdir, as POSIX does not allow
2981 mkdir to ignore it.
2982 Do not report mkdir error if old_files_option == KEEP_OLD_FILES.
2983
2984 * src/buffer.c (<time.h>): Do not include; system.h now does this.
2985 (time): Remove decl; likewise.
2986 (child_open_for_uncompress): Use new full_write semantics.
2987 (flush_write): Use ISSLASH instead of testing for '/'.
2988 (flush_read): Likewise.
2989
2990 * src/rmt.h (_remdev): Look for / anywhere in Path.
2991
2992 * src/misc.c (contains_dot_dot): Skip filesystem prefix.
2993 Don't assume '/' is the only separator.
2994 (safer_rmdir): Don't assume '/' is the only separator.
2995
2996 * src/compare.c (diff_archive): Don't assume '/' is the only separator.
2997
2998 * lib/dirname.h (dirlen): New decl.
2999
3000 * src/incremen.c (get_directory_contents):
3001 Remove path_size arg; all callers changed.
3002 Don't assume '/' is the only directory separator.
3003 (gnu_restore): Work even if file name length doesn't fit in int.
3004
3005 * lib/addext.c (ISSLASH): New macro.
3006 (addext): Trim any redundant trailing slashes.
3007
3008 * src/names.c (name_next):
3009 Don't assume '/' is the only directory separator.
3010 (namelist_match): Likewise.
3011 (add_hierarchy_to_namelist): Remove dirsize arg.
3012 Do not assume '/' is the only directory separator.
3013 (new_name): Likewise.
3014
3015 * lib/Makefile.am (noinst_HEADERS): Add dirname.h, full-write.h.
3016 (libtar_a_SOURCES): Add dirname.c.
3017
3018 * src/create.c (relativize):
3019 New function, with much of old start_header's guts.
3020 Handle filesystem prefixes.
3021 (start_header): Use this new function.
3022 (init_sparsearray): Don't bother to zero out the new array;
3023 it's not needed.
3024 (deal_with_sparse): Fix array allocation bug.
3025 (create_archive): Don't assume '/' is the only separator.
3026 (dump_file): Likewise.
3027 Don't worry about leading / in symlink targets.
3028
3029 * lib/savedir.c (savedir):
3030 Remove size arg; it wasn't portable. All callers changed.
3031
3032 * lib/utime.c (utime_null): Adjust to new full_write convention.
3033
3034 * configure.in (YACC): Avoid portability problem with Ultrix sh.
3035
3036 * lib/backupfile.c: Include <dirname.h>.
3037 (ISSLASH): New macro.
3038 (find_backup_file_name): Use dirlen to calculate directory lengths.
3039 (max_backup_version): Strip redundant trailing slashes.
3040
3041 * src/common.h: Include <full-write.h>.
3042 (get_directory_contents): No longer has size arg.
3043 (gnu_restore): Arg is size_t, not int.
3044
3045 * src/system.h: Include <time.h>.
3046 (time): Declare if not defined.
3047
3048 * lib/full-write.c: Include full-write.h, not safe-read.h.
3049 full_write returns size_t, with short writes meaning failure.
3050 All callers changed.
3051
3052 * src/rtapelib.c: Include full-write.h.
3053
3054 * src/rmt.c: Include full-write.h.
3055 (main): Update copyright.
3056
3057 * doc/getdate.texi: Mention that only English is supported.
3058 Show how to use "date" so that the output is acceptable to getdate.
3059 Mention Z as an abbreviation for UTC.
3060
3061 * lib/full-write.h: New file.
3062
3063 * src/list.c: system.h now does time.h stuff.
3064
3065 * lib/dirname.c:
3066 Use HAVE_STDLIB_H, not STDC_HEADERS, to decide whether to include
3067 stdlib.h.
3068 Do not include string.h, strings.h, or assert.h; no longer needed.
3069 (strrchr, memrchr, malloc): Remove decls; no longer needed.
3070 Include <xalloc.h>.
3071 (base_name): New decl.
3072 (BACKSLASH_IS_PATH_SEPARATOR): Remove.
3073 (dir_name_r): Remove.
3074 (dirlen): New function.
3075 (dir_name): Use dirlen instead of dir_name_r.
3076 (<string.h>, <strings.h>): Include only if test program.
3077 (main): Use "return 0", not "exit (0)".
3078
3079 2000-12-08 Paul Eggert <eggert@twinsun.com>
3080
3081 * lib/dirname.h: New file.
3082
3083 2000-11-02 Vesselin Atanasov <vesselin@bgnet.bg>
3084
3085 * lib/fnmatch.c: Do not comment out all the code if we are using
3086 the GNU C library, because in some cases we are replacing buggy
3087 code in the GNU C library itself.
3088
3089 2000-10-30 Paul Eggert <eggert@twinsun.com>
3090
3091 * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
3092
3093 2000-10-29 Paul Eggert <eggert@twinsun.com>
3094
3095 * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.18.
3096
3097 * src/tar.c: Include <fnmatch.h>, for FNM_LEADING_DIR.
3098
3099 2000-10-28 Paul Eggert <eggert@twinsun.com>
3100
3101 * doc/tar.texi: --no-recursion now applies to extraction, too.
3102 * src/create.c (dump_file): no_recurse_option -> ! recursion_option
3103 * src/names.c (namelist_match, excluded_name):
3104 Do not match subfiles of a directory
3105 if --no-recursion is specified.
3106 * src/tar.c (NO_RECURSE_OPTION): Remove.
3107 (long_options): Have getopt set the --no-recursion flag.
3108 (decode_options): Initialize recursion_option to FNM_LEADING_DIR.
3109 Remove case for NO_RECURSE_OPTION.
3110 * src/common.h (recursion_option):
3111 Renamed from no_recurse_option, with sense
3112 negated, and with FNM_LEADING_DIR being the nonzero value.
3113
3114 * names.c (namelist_match): New function.
3115 (name_match, name_scan): Use it to eliminate duplicate code.
3116 (names_notfound): Remove special case for Amiga.
3117
3118 2000-10-27 Paul Eggert <eggert@twinsun.com>
3119
3120 * src/misc.c (read_error_details, read_warn_details,
3121 read_fatal_details): Don't assume size_t is unsigned long.
3122
3123 * src/buffer.c (flush_read): If read_full_records_option, try to
3124 fill the input buffer, as --delete -f - needs this.
3125
3126 2000-10-24 Paul Eggert <eggert@twinsun.com>
3127
3128 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Port to autoconf 2.13.
3129
3130 * src/buffer.c (check_label_pattern):
3131 Make sure header name is a string before
3132 passing it to fnmatch.
3133 (init_volume_number): Check for global_volno overflow.
3134 (new_volume): Check for global_volno overflow.
3135
3136 * src/tar.c (decode_options):
3137 Check that volume label is not too long to overflow
3138 name in tar header block.
3139
3140 * Makefile.am (EXTRA_DIST): Remove rebox.el.
3141
3142 * configure.in (HAVE_DECL_STRERROR_R): Remove our handwritten code.
3143 (AC_FUNC_STRERROR_R): Use this instead.
3144
3145 2000-10-23 Paul Eggert <eggert@twinsun.com>
3146
3147 * src/extract.c: Include <time.h>, since we invoke "time".
3148
3149 * lib/prepargs.c (prepend_default_options):
3150 Don't use NULL, for portability.
3151
3152 * m4/fnmatch.m4: Add "working" to message.
3153
3154 * src/names.c: (_GNU_SOURCE): Remove; autoconf now does this.
3155 Include <hash.h>.
3156 (getpwuid, getgrgid): Declare only if system headers don't.
3157 (gid_to_gname): Don't invoke setgrent.
3158 (namelist): Now static, not global.
3159 (nametail): New var. All uses of namelast changed to use
3160 nametail, with one extra level of indirection.
3161 (name_gather): Use memcpy instead of strncpy + assignment of NUL.
3162 (name_match): Set nametail too, when setting namelist to null.
3163 (add_hierarchy_to_namelist): Change type of dir arg from char * to
3164 struct name *, so that we don't have to look up the name again
3165 here. Get change_dir from dir rather than as a separate arg. Add
3166 dirsize arg, and pass it along to get_directory_contents. Remove
3167 unnecessary check of directory type.
3168 (new_name): Do not append a slash if PATH already ends in one.
3169 (avoided_names, struct avoided_name): Remove.
3170 (avoided_name_table): New var, replacing avoided_names.
3171 (hash_avoided_name, compare_avoided_names): New function.
3172 (add_avoided_name, is_avoided_name): Use hash table rather than
3173 linked list.
3174
3175 * src/buffer.c (_GNU_SOURCE): Remove; autoconf now does this.
3176 (child_open_for_compress, child_open_for_uncompress,
3177 close_archive): Propagate any failure of the compression process
3178 back to "tar".
3179 (open_archive, flush_write, flush_read, close_archive): Do not
3180 allocate an array of size PATH_MAX, as PATH_MAX might be (size_t)
3181 -1. Instead, allocate an array with the size that's needed.
3182 (open_archive): Don't bother checking S_ISCHR of /dev/null.
3183 (backspace_output): Don't try to backspace past start of archive.
3184 (close_archive): Remove special case for DELETE_SUBCOMMAND.
3185
3186 * acconfig.h (_GNU_SOURCE, DEFAULT_ARCHIVE, DEFAULT_BLOCKING,
3187 DENSITY_LETTER, DEVICE_PREFIX, EMUL_OPEN3, HAVE_GETGRGID,
3188 HAVE_GETPWUID, HAVE_MKNOD, HAVE_RTAPELIB, HAVE_ST_FSTYPE_STRING,
3189 HAVE_UNION_WAIT, HAVE_UTIME_H, HAVE_VALLOC, MTIO_CHECK_FIELD, PACKAGE,
3190 PROTOTYPES, REMOTE_SHELL, STD_INC_PATH, VERSION, WITH_CATALOGS,
3191 WITH_DMALLOC, WITH_REGEX):
3192 Remove; now generated automatically.
3193
3194 * configure.in (_GNU_SOURCE): Define to empty, not 1, for
3195 compatibility for glibc fragments.
3196 (_GNU_SOURCE, HAVE_UTIME_H, MTIO_CHECK_FIELD,
3197 HAVE_ST_FSTYPE_STRING, HAVE_MKNOD, REMOTE_SHELL, DENSITY_LETTER,
3198 DEVICE_PREFIX, DEFAULT_ARCHIVE, DEFAULT_BLOCKING): Add comment so
3199 that we needn't put an entry into acconfig.h.
3200 (ALL_LINGUAS): Add da.
3201 (AC_C_BACKSLASH_A): Remove; jm_PREREQ_QUOTEARG now does this.
3202 (AC_CHECK_HEADERS): Add stdbool.h (for hash.h users), wctype.h
3203 (for strtol.c).
3204 (AC_MBSTATE_T): Add.
3205 (RMT): Append $(EXEEXT).
3206 (HAVE_GETGRGID, HAVE_GETPWUID, pe_AC_TYPE_SIGNED_CHAR): Remove.
3207 (HAVE_DECL_FREE, HAVE_DECL_GETGRGID, HAVE_DECL_GETPWUID,
3208 HAVE_DECL_GETENV, HAVE_DECL_MALLOC, HAVE_DECL_STRTOUL,
3209 HAVE_DECL_STRTOULL, HAVE_DECL_STRERROR_R): New macros.
3210 (jm_PREREQ_ADDEXT, jm_PREREQ_ERROR, jm_PREREQ_QUOTEARG): Add.
3211 (AC_REPLACE_FUNCS): Remove execlp; no longer needed.
3212 (AC_CHECK_FUNCS): Add clock_gettime; AC_SEARCH_LIBS wasn't enough.
3213 Remove mbrtowc; jm_PREREQ_QUOTEARG now does this.
3214 (EMUL_OPEN3): Remove; no longer needed.
3215 (DENSITY_LETTER, DEVICE_PREFIX): Simplify m4 quoting.
3216
3217 * m4/fnmatch.m4 (AC_FUNC_FNMATCH): Detect d*/*1 vs d/s/1 bug.
3218
3219 * src/common.h: Do not include basename.h.
3220 * src/rtapelib.c (base_name): Do not include basename.h;
3221 declare base_name instead.
3222
3223 * lib/basename.h, lib/execlp.c, lib/getpagesize.h, lib/mkdir.c:
3224 Remove these files.
3225 * lib/getstr.c, lib/getstr.h, lib/hash.h, lib/hash.h, lib/prepargs.c,
3226 lib/prepargs.h, lib/savedir.c, lib/savedir.h: New files.
3227 * lib/Makefile.am (EXTRA_DIST, noinst_HEADERS, libtar_a_SOURCES):
3228 Adjust to the above changes.
3229
3230 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove ../src/ansi2knr.
3231
3232 * src/open3.c: Remove.
3233
3234 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove ansi2knr.
3235 (tar_SOURCES): Remove open3.c.
3236 (INCLUDES): Remove -I.., as automake does that.
3237 (OMIT_DEPENDENCIES): ../lib/fnmatch.h -> fnmatch.h. Add localedir.h.
3238
3239 The following changes are to put LOCALEDIR into localedir.h instead
3240 of passing it on the command line.
3241 (DEFS): Remove.
3242 (DISTCLEANFILES): New macro.
3243 (localedir.h): New rule.
3244 (rmt.o tar.o): Now depend on localedir.h.
3245
3246 * tests/delete02.sh, tests/extrac04.sh: New files.
3247
3248 * tests/Makefile.am (AUTOMAKE_OPTIONS): Remove ansi2knr.
3249 (TESTS): Add extrac04.sh, and restore delete02.sh.
3250 (DEFS): Remove; LOCALEDIR is now done via localedir.h.
3251 (INCLUDES): Remove -I.. as automake does this now.
3252
3253 * src/rtapelib.c (rexec): Don't declare unless using it.
3254 (do_command): Simplify signal-handling code slightly.
3255
3256 * src/delete.c (blocks_needed): Remove. All uses changed to use
3257 blocking_factor - new_blocks.
3258 (acting_as_filter): New var.
3259 (write_record, delete_archive_members): Use acting_as_filter
3260 rather than archive == STDIN_FILENO to detect whether we're acting
3261 as a filter, as open can return STDIN_FILENO in some cases.
3262 (delete_archive_members): Ignore zero blocks if
3263 ignore_zeros_option is nonzero. Fix bug that messed up last
3264 output block: write_eot can't be used here, as it gets confused
3265 when the input is at end of file.
3266
3267 * src/compare.c (diff_archive): Do not impose an arbitrary limit on
3268 symbolic link contents length. Pass directory size to
3269 get_directory_contents.
3270
3271 * m4/decl.m4, m4/error.m4, m4/mbstate_t.m4, m4/prereq.m4,
3272 m4/strerror_r.m4: New files.
3273 * m4/signedchar.m4: Remove this file.
3274 * Makefile.am (ACINCLUDE_INPUTS): Adjust to above changes.
3275 * m4/Makefile.am (EXTRA_DIST): Likewise.
3276
3277 * Makefile.am (DISTCLEANFILES): Add intl/libintl.h.
3278
3279 * po/da.po: New translation file.
3280
3281 * src/mangle.c (extract_mangle):
3282 Fix diagnostic with wrong number of %s'es.
3283
3284 * lib/fnmatch.c (fnmatch):
3285 Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
3286 e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
3287
3288 * lib/full-write.c (full_write): Some buggy drivers return 0 when you
3289 fall off a device's end. Detect this.
3290
3291 * src/system.h (IN_CTYPE_DOMAIN): Renamed from CTYPE_DOMAIN. All
3292 uses changed.
3293 (open): Remove macro; we no longer support EMUL_OPEN3. Do not
3294 include <pathmax.h> and directory include files like <dirent.h>;
3295 no longer used. Include <savedir.h> instead.
3296 (closedir, signed_char): remove macro; no longer used.
3297 (bool, false, true): Include <stdbool.h> if you have the include
3298 file, otherwise define.
3299
3300 * src/misc.c:
3301 (is_dot_or_dotdot, closedir_error, closedir_warn, opendir_error,
3302 opendir_warn, readdir_error): Remove; no longer needed.
3303 (safer_rmdir): Strip leading ./ (or .// or ./// or ././ or etc.)
3304 before deciding whether we're trying to remove ".".
3305 (remove_any_file): Try unlink first if we are not root. Use
3306 savedir when recursively removing directories, to avoid exhausting
3307 file descriptors.
3308 (savedir_error, savedir_warn, symlink_error): New functions.
3309
3310 * src/list.c: (read_and): Do not invoke
3311 apply_nonancestor_delayed_set_stat; DO_SOMETHING is now
3312 responsible for that. Do not invoke apply_delayed_set_stat; our
3313 caller is now responsible for that.
3314 (read_header): Use signed char instead of signed_char. Prevent
3315 later references to current_header from mistakenly treating it as
3316 an old GNU header.
3317 (from_header): Quote invalid base-64 strings in diagnostics.
3318 (time_from_header): Do not warn about future timestamps in
3319 archive; check_time now does that.
3320 (print_header): Quote unknown file types.
3321 (skip_member): New function, replacing skip_extended_headers and
3322 now skipping the whole member instead of just the extended
3323 headers. All callers changed. This makes the code handle
3324 extended headers uniformly, and fixes some bugs.
3325
3326 * src/update.c (update_archive): Use skip_member.
3327
3328 * src/extract.c (we_are_root): Now global.
3329 (struct delayed_symlink): New type.
3330 (delayed_symlink_head): New var.
3331 (extr_init, fatal_exit): Invoke extract_finish on fatal errors,
3332 not apply_delayed_set_stat.
3333 (set_mode, set_stat): Pointer args are now const pointers.
3334 (check_time): New function.
3335 (set_stat): Warn if setting a file's timestamp to be the future.
3336 (make_directories): Do not save and restore errno.
3337 (maybe_recoverable): Set errno to ENOENT if we cannot make missing
3338 intermediate directories.
3339 (extract_archive): Invoke apply_nonancestor_delayed_set_stat here,
3340 not in caller. Extract potentially dangerous symbolic links more
3341 carefully, deferring their creation until the end, and using a
3342 regular file placeholder in the meantime. Do not remove trailing
3343 / and /. from file names. Do not bother checking for ".." when
3344 checking whether a directory loops back on itself, as loopbacks
3345 can occur with symlinks too. Also, in that case, do not bother
3346 saving and restoring errno; just set it to EEXIST.
3347 (apply_nonancestor_delayed_set_stat): A prefix is a potential
3348 ancestor if it ends in slash too (as well as ending in a char just
3349 before slash).
3350 (apply_delayed_set_stat): Remove.
3351 (apply_delayed_symlinks, extract_finish): New functions.
3352
3353 * doc/fdl.texi: New file.
3354 * doc/Makefile.am (EXTRA_DIST): Add fdl.texi.
3355 ($(srcdir)/tar.info): Add fdl.texi. Invoke makeinfo with --no-split.
3356 * doc/tar.texi: Add Free Documentation License. New section
3357 "Overwrite Old Files", and revamp that section to make it easier to
3358 follow. "tar" -> "GNU tar" where appropriate. Migrate getdate
3359 documentation into getdate.texi. Fix several minor typos. Describe
3360 TAR_OPTIONS. Describe incompatibility between incremental backups and
3361 --atime-preserve. Describe incompatibility between --verify and other
3362 options. Mention that tar normally removes symbolic links rather than
3363 following them, when extracting a file of the same name.
3364
3365 * THANKS: Add gpoul. Change skip's address.
3366
3367 * po/POTFILES.in: Add lib/human.c.
3368
3369 * src/common.h (namelist, namelast): Remove decls.
3370 (we_are_root, extract_finish, skip_member, savedir_error,
3371 savedir_warn, symlink_error, gnu_list_name): New decls.
3372 (apply_delayed_set_stat, apply_nonancestor_delayed_set_stat,
3373 skip_extended_headers, is_dot_or_dotdot, closedir_error,
3374 closedir_warn, opendir_error, opendir_warn, readdir_error,
3375 readdir_warn): Remove decls.
3376 (get_directory_contents): New off_t arg.
3377 (addname): Now returns struct name *.
3378
3379 * src/tar.h, tests/genfile.c: Fix comments.
3380
3381 * src/create.c: Include hash.h.
3382 (gnu_list_name): Remove decl.
3383 (struct link): Remove "next" member.
3384 (linklist): Remove.
3385 (start_header): Say "leading `FOO'" rather than "`FOO' prefix" for
3386 consistency with other diagnostics.
3387 (deal_with_sparse): Check for I/O error when closing the file.
3388 (create_archive): Do not allocate an array of size PATH_MAX, as
3389 PATH_MAX might be (size_t) -1. Instead, allocate an array with
3390 the size that's needed.
3391 (hash_link, compare_links): New functions.
3392 (dump_file): Do not exhaust open file descriptors when descending
3393 deeply into a directory, by using savedir rather than
3394 opendir/readdir. Do not zero-fill the name buffer unnecessarily.
3395 Hash the set of links already created, instead of using a linked
3396 list. Fix some bugs in outputting sparse files which caused the
3397 sparse tables to be incorrect. When a file unexpectedly shrinks,
3398 output zeros rather than garbage. Do not allocate an array of
3399 size PATH_MAX, as PATH_MAX might be (size_t) -1. Instead,
3400 allocate an array with the size that's needed.
3401
3402 * src/incremen.c: Include hash.h.
3403 (struct directory): Remove "next", "dir_text". Change "name" to
3404 be char[1] with struct hack, not const char *. Add "found".
3405 (directory_list): Remove. Replaced by directory_table.
3406 (directory_table): New var.
3407 (nfs_string): Renamed from nfs.
3408 (hash_directory, compare_directories): New functions.
3409 (note_directory): Now returns struct directory *. First arg is
3410 now const pointer. struct stat arg is now dev_t, ino_t, nfs.
3411 Remove text arg. New "found" arg, basically corresponding to the
3412 old text arg not being null. All callers changed.
3413 (note_directory, find_directory): Use hash table rather than
3414 linked list.
3415 (get_directory_contents): New arg "device". Use savedir to do the
3416 hard work. Save the nfs-ness of stat_data, since it might change
3417 under us. Use note_directory instead of find_directory to save
3418 some work. When adding an "A" record, do it with
3419 add_to_accumulator instead of cheating with strcat.
3420 (read_directory_file): Use "+" flag before device to indicate
3421 whether it was NFS. Fix typo in checking for strtoul error.
3422 (write_directory_file_entry): New function.
3423 (write_directory_file): Use it, and use the hash routines to
3424 traverse the directory table.
3425 (gnu_restore): Use savedir rather than opendir/readdir.
3426
3427 * src/tar.c: Include localedir.h, prepargs.h.
3428 (long_options): Now static.
3429 (long_options, usage, decode_options): -j is now short for
3430 --bzip2, and -I is now an alias for -T.
3431 (decode_options, main): argv is not const pointer now.
3432 (decode_options): Invoke prepend_default_options to support
3433 TAR_OPTIONS. In diagnostic, mention the string that was the
3434 invalid blocking factor, tape length, group, owner, or record
3435 size. --delete is no longer incompatible with -f -, undoing
3436 2000-01-07 change.
3437 (main): Invoke extract_finish at end of extraction.
3438
3439 * src/rmt.c: Include localedir.h.
3440 (main): Update copyright date to 2000.
3441
3442 * doc/getdate.texi: New file, taken from fileutils 4.0.27, with the
3443 following changes: Use @sc where appropriate. Document the ranges of
3444 supported times more precisely. Add Eggert to getdate authors.
3445 Document old Latin 12m/12pm tradition. Remove list of alphabetic time
3446 zone names, as it wasn't correct and people shouldn't be relying on it
3447 anyway. Relative items also account for non-DST adjustments. Fix
3448 some misspellings.
3449
3450 * lib/prepargs.c, lib/prepargs.h, tests/extrac04.sh: New file.
3451
3452 * tests/ignfail.sh: opendir -> savedir in diagnostics.
3453
3454 * tests/preset.in: Set LANGUAGE to the empty string, for some
3455 brain damaged host.
3456
3457 2000-10-20 Paul Eggert <eggert@twinsun.com>
3458
3459 * m4/fnmatch.m4: Mention the GNU C library.
3460
3461 2000-10-19 Paul Eggert <eggert@twinsun.com>
3462
3463 * m4/fnmatch.m4: Add a couple more test cases to catch bugs in
3464 glibc 2.1.95.
3465
3466 2000-10-17 Paul Eggert <eggert@twinsun.com>
3467
3468 * lib/human.c (<limits.h>): Do not include; human.h does it if needed.
3469 (CHAR_BIT): Remove.
3470
3471 * lib/human.h (<limits.h>): Include if HAVE_LIMITS_H.
3472 (CHAR_BIT): Define if not defined.
3473
3474 2000-09-09 Paul Eggert <eggert@twinsun.com>
3475
3476 * lib/quotearg.c: From fileutils: rename ISASCII to IN_CTYPE_DOMAIN.
3477
3478 2000-08-07 Paul Eggert <eggert@twinsun.com>
3479
3480 * lib/xmalloc.c: Memory exhausted -> memory exhausted
3481
3482 * lib/xalloc.h (xalloc_msg_memory_exhausted):
3483 change to array from char *.
3484
3485 2000-08-06 Paul Eggert <eggert@twinsun.com>
3486
3487 * m4/mbstate_t.m4: Define mbstate_t to be int, not char, for
3488 compatibility with glibc 2.1.3 strftime.c.
3489
3490 2000-07-31 Paul Eggert <eggert@twinsun.com>
3491
3492 * lib/quotearg.c (quotearg_n_options):
3493 Don't make the initial slot vector a constant,
3494 since it might get modified.
3495
3496 * lib/quotearg.c: Add support for more than one preallocated slot.
3497
3498 2000-07-30 Paul Eggert <eggert@twinsun.com>
3499
3500 * lib/quotearg.c (quotearg_n_options):
3501 Preallocate a slot 0 buffer, so that the caller
3502 can always quote one small component of a "memory exhausted" message
3503 in slot 0.
3504
3505 2000-07-23 Paul Eggert <eggert@twinsun.com>
3506
3507 * lib/quotearg.c:
3508 Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX), so that
3509 mbstate_t is always defined.
3510
3511 Do not inspect MB_LEN_MAX, since it's incorrectly defined to be 1 in
3512 some GCC installations, and this configuration error is likely to be
3513 common.
3514
3515 2000-07-22 Paul Eggert <eggert@twinsun.com>
3516
3517 * lib/quotearg.c:
3518 When the system forces us to redefine mbstate_t, shadow its mbsinit
3519 function. From Bruno Haible.
3520
3521 2000-07-14 Paul Eggert <eggert@twinsun.com>
3522
3523 * lib/xmalloc.c: Simplify exhausted message.
3524
3525 * lib/quotearg.h: Update copyright date; from Jim Meyering.
3526
3527 2000-07-13 Paul Eggert <eggert@twinsun.com>
3528
3529 * lib/quotearg.h (enum quoting style):
3530 New constant clocale_quoting_style.
3531
3532 * lib/quotearg.c:
3533 (quoting_style_args, quoting_style_vals, quotearg_buffer_restyled):
3534 Add support for clocale_quoting_style, undoing previous change to
3535 locale_quoting_style.
3536
3537 2000-07-10 Paul Eggert <eggert@twinsun.com>
3538
3539 * lib/quotearg.c:
3540 <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX,
3541 since otherwise we don't need it.
3542 (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
3543 since we don't do multibytes in that case.
3544 (quotearg_buffer_restyled): If a unibyte locale, don't bother to
3545 invoke multibyte primitives.
3546
3547 * m4/mbstate_t.m4 (AC_MBSTATE_T):
3548 Renamed from AC_MBSTATE_T_OBJECT. All uses changed.
3549 Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
3550 and mbstate_t, to a single-part test that simply defines mbstate_t.
3551
3552 * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
3553 Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
3554 to decide whether to define the BeOS workaround macro;
3555 this adjusts to the change to AC_MBSTATE_T.
3556
3557 * m4/strerror_r.m4: New file.
3558
3559 2000-07-05 Paul Eggert <eggert@twinsun.com>
3560
3561 * lib/quotearg.c: Use double-quote to quote.
3562
3563 * lib/quotearg.c (N_): New macro.
3564 (gettext_default): New function.
3565 (quotearg_buffer_restyled): Use gettext_default ("{LEFT QUOTATION MARK}",
3566 "\"") for left quote, and gettext_default ("{RIGHT QUOTATION MARK}", "\"")
3567 for right quote.
3568
3569 * lib/quotearg.c (struct quoting_options):
3570 Simplify quote_these_too dimension.
3571 From Bruno Haible <haible@clisp.cons.org>.
3572
3573 * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT):
3574 Test for mbstate_t only if the test
3575 for an object-type mbstate_t fails.
3576
3577 * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
3578
3579 2000-07-03 Paul Eggert <eggert@twinsun.com>
3580
3581 * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
3582 Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
3583
3584 * lib/quotearg.c (mbrtowc):
3585 Assign to *pwc, and return 1 only if result is nonzero.
3586 (iswprint): Define to ISPRINT if we are substituting our own mbrtowc.
3587
3588 2000-07-02 Paul Eggert <eggert@twinsun.com>
3589
3590 * lib/quotearg.c (mbstate_t):
3591 Do not define; it should be defined with AC_CHECK_TYPE.
3592
3593 2000-06-26 Paul Eggert <eggert@twinsun.com>
3594
3595 * m4/mbstate_t.m4: Include stdio.h before wchar.h, to work around
3596 a bug in glibc 2.1.3.
3597
3598 * lib/xmalloc.c: Fix inaccorate comment for xrealloc.
3599
3600 2000-06-19 Paul Eggert <eggert@twinsun.com>
3601
3602 * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
3603 inclusion of wctype.h to work around solaris2.6 namespace pollution.
3604 (ISPRINT): Likewise.
3605 Reported by Tom Tromey.
3606
3607 2000-06-15 Paul Eggert <eggert@twinsun.com>
3608
3609 * lib/human.c (adjust_value): New function.
3610 (human_readable_inexact): Apply rounding style even when printing
3611 approximate values.
3612
3613 * lib/human.c: Avoid shadowing warnings.
3614 From Jim Meyering.
3615
3616 2000-06-14 Paul Eggert <eggert@twinsun.com>
3617
3618 * lib/human.c (human_readable_inexact): Allow an input block size
3619 that is not a multiple of the output block size, and vice versa.
3620
3621 * lib/getdate.y (get_date): Apply relative times after time zone
3622 indicator, not before.
3623
3624 2000-05-31 Paul Eggert <eggert@twinsun.com>
3625
3626 * m4/largefile.m4: Rewrite so that we don't need to run getconf,
3627 and thus don't need AC_CANONICAL_HOST.
3628
3629 (AC_SYS_LARGEFILE_FLAGS, AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
3630 (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
3631 (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
3632 CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY. All uses
3633 changed. Instead of inspecting the output of getconf, try to
3634 compile the test program without and with the macro definition.
3635 (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check for
3636 getconf. Instead, check for the needed flags by compiling test
3637 programs.
3638
3639 * configure.in (AC_CANONICAL_HOST): Remove; the largefile stuff no
3640 longer needs it.
3641 * config.guess, config.sub: Remove these files, for similar reasons.
3642
3643 2000-05-03 Paul Eggert <eggert@twinsun.com>
3644
3645 * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to be
3646 500, instead of _GNU_SOURCE to be 1, to work around glibc 2.1.3
3647 bug. This avoids a clash when files like regex.c that define
3648 _GNU_SOURCE.
3649
3650 2000-05-02 Paul Eggert <eggert@twinsun.com>
3651
3652 * m4/largefile.m4 (AC_SYS_LARGEFILE):
3653 Define _GNU_SOURCE if this is needed to make
3654 ftello visible (e.g. glibc 2.1.3). Use compile-time test, rather than
3655 inspecting host and OS, to decide whether to define _LARGEFILE_SOURCE.
3656
3657 * lib/quotearg.c (mbrtowc, mbstat_t):
3658 Add definitions if !HAVE_MBSTATE_T_OBJECT.
3659 (<wctype.h>): Include if HAVE_WCTYPE_H.
3660 (iswprint): Define to 1 if we lack it
3661
3662 2000-04-18 Paul Eggert <eggert@twinsun.com>
3663
3664 * m4/mbstate_t.m4: New file.
3665
3666 2000-04-17 Bruno Haible <haible@clisp.cons.org>
3667
3668 * tests/ignfail.sh: Test for uid 0 along with user "root".
3669
3670 2000-04-05 Paul Eggert <eggert@twinsun.com>
3671
3672 * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS):
3673 Don't use -n32 on IRIX if the installer said
3674 otherwise.
3675
3676 2000-02-28 Paul Eggert <eggert@twinsun.com>
3677
3678 * lib/quotearg.c (ALERT_CHAR): New macro.
3679 (quotearg_buffer_restyled): Use it.
3680
3681 2000-02-23 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
3682
3683 * src/list.c (tartime): Fix off-by-one error when copying year if
3684 OLD_CTIME.
3685
3686 2000-02-18 Paul Eggert <eggert@twinsun.com>
3687
3688 * lib/getdate.y: Handle two-digit years with leading zeros correctly.
3689 (textint): New typedef.
3690 (parser_control): Changed from struct parser_control to typedef
3691 (for consistency). Member year changed from int to textint. All
3692 uses changed.
3693 (YYSTYPE): Removed; replaced by %union with int and textint
3694 members.
3695 (tID): Removed; not used.
3696 (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE,
3697 tMERIDIAN, tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER,
3698 tUNUMBER, tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
3699 (tSNUMBER, tUNUMBER): Now of type <textintval>.
3700 (date, number, to_year): Use width of number in digits, not its
3701 value, to determine whether it's a 2-digit year, or a 2-digit
3702 time.
3703 (yylex): Store number of digits of numeric tokens. Return '?' for
3704 unknown identifiers, rather than (unused) tID.
3705
3706 2000-01-16 Paul Eggert <eggert@twinsun.com>
3707
3708 * lib/quotearg.c (quotearg_buffer_restyled):
3709 Do not quote alert, backslash, formfeed,
3710 and vertical tab unnecessarily in shell quoting style.
3711
3712 2000-01-15 Paul Eggert <eggert@twinsun.com>
3713
3714 * m4/c-bs-a.m4:
3715 Change quoting to be compatible with future autoconf versions.
3716
3717 2000-01-11 Paul Eggert <eggert@twinsun.com>
3718
3719 * lib/exclude.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Remove unused macros.
3720
3721 2000-01-07 Paul Eggert <eggert@twinsun.com>
3722
3723 * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.17.
3724
3725 Fix bug with fnmatch.h dependency, as follows:
3726 * src/Makefile.am (OMIT_DEPENDENCIES): New macro.
3727 * lib/Makefile.am (OMIT_DEPENDENCIES): New macro.
3728
3729 * src/common.h (apply_nonancestor_delayed_set_stat):
3730 Renamed from apply_delayed_set_stat.
3731 (apply_delayed_set_stat, decode_mode, chmod_error_details,
3732 chown_error_details, close_warn, closedir_warn, mkdir_error,
3733 read_error_details, read_fatal_details, read_warn_details,
3734 seek_error_details, seek_warn_details, utime_error,
3735 write_error_details, write_fatal_details): New decls.
3736
3737 Make diagnostic messages more regular.
3738 * src/create.c (dump_file): Quote file names with colons if possible.
3739 * src/compare.c (diff_archive): Likewise.
3740 * src/extract.c (repair_delayed_set_stat, extract_archive): Likewise.
3741 * src/incremen.c (get_directory_contents, gnu_restore): Likewise.
3742 * src/mangle.c (extract_mangle): Likewise.
3743 * src/misc.c (call_arg_error, call_arg_fatal, call_arg_warn):
3744 Likewise.
3745 * src/buffer.c (archive_write_error, flush_archive, close_archive,
3746 new_volume, xclose):
3747 Use error message functions to report errors consistently.
3748 * src/compare.c (diff_sparse_files, diff_archive): Likewise.
3749 * src/create.c (finish_sparse_file, dump_file): Likewise.
3750 * src/extract.c (set_mode, set_stat, extract_sparse_file,
3751 extract_archive): Likewise.
3752 * src/list.c (list_archive): Likewise.
3753 * src/update.c (append_file): Likewise.
3754 * src/compare.c (diff_init, diff_sparse_files):
3755 Use xalloc_die to report memory exhaustion.
3756 * src/incremen.c (gnu_restore): Likewise.
3757 * src/list.c (read_header): Likewise.
3758 * src/mangle.c (extract_mangle): Likewise.
3759 * src/misc.c (maybe_backup_file): Likewise.
3760 * src/tar.c (decode_options): Likewise.
3761 * src/compare.c (read_and_process, fill_in_sparse_array,
3762 diff_sparse_files):
3763 Use consistent terminology for unexpected-EOF message.
3764 * src/extract.c (extract_sparse_file, extract_archive): Likewise.
3765 * src/list.c (list_archive, read_header, skip_file,
3766 skip_extended_headers): Likewise.
3767 * src/buffer.c (archive_write_error): Add noreturn attribute to decl.
3768 (xdup2): Regularize messages with rest of tar.
3769
3770 * src/buffer.c (flush_read): Don't read past EOF.
3771
3772 * src/extract.c (extr_init):
3773 If we run out of memory, invoke apply_delayed_set_stat.
3774 (prepare_to_extract): Don't complain if we can't remove ".".
3775 (apply_delayed_set_stat): New function.
3776 (apply_nonancestor_delayed_set_stat):
3777 Renamed from apply_delayed_set_stat. All uses changed.
3778 Don't remove head if it doesn't apply.
3779
3780 * src/create.c (find_new_file_size):
3781 Return size instead of storing through pointer.
3782 All callers changed.
3783 (deal_with_sparse): Don't keep reading after read errors.
3784 (finish_sparse_file): Just abort if there is an internal error.
3785 (dump_file): Fix typo: stat_warn and stat_error were interchanged.
3786 Don't restore access times on directories during incremental dumps
3787 until after dealing with the directory.
3788 If ignoring failed reads, count closedir, read, and unknown
3789 file errors as warnings, not errors.
3790 Fix buffer overrun problem when dumping sparse files.
3791
3792 * src/list.c (read_and):
3793 Invoke apply_nonancestor_delayed_set_stat on file names
3794 after handling them.
3795 (decode_mode): Remove; moved to misc.c.
3796
3797 * src/misc.c (safer_rmdir): New function.
3798 (remove_any_file): Use it to avoid problems with rmdir(".").
3799 (maybe_backup_file): Regularize diagnostics.
3800 (undo_backup_file): Likewise.
3801 (decode_mode): Moved here from list.c.
3802 (chmod_error_details, chown_error_details, close_fatal,
3803 close_warn, closedir_warn, mkdir_error, read_error_details,
3804 read_warn_details, read_fatal_details, seek_error_details,
3805 seek_warn_details, utime_error, write_error_details,
3806 write_fatal_details): New functions.
3807
3808 * src/delete.c (save_record): Remove static variable (now local).
3809 (move_archive): Don't position before start of archive.
3810 (write_record): Abort if count is zero at inopportune time.
3811 Plug memory leak.
3812
3813 * src/tar.c (decode_options): --delete and -f - are now
3814 incompatible, since we didn't have time to fix their bugs.
3815
3816 * tests/Makefile.am (TESTS): Remove delete02.sh.
3817 * tests/ignfail.sh: Adjust to new quoting scheme again.
3818
3819 2000-01-06 Paul Eggert <eggert@twinsun.com>
3820
3821 * lib/getdate.y: Sync tm_diff with the GNU C Library.
3822 (TM_YEAR_BASE): Renamed from TM_YEAR_ORIGIN. All uses changed.
3823 (tm_diff): Renamed from difftm. All uses changed.
3824 Replace body with that taken from GNU C Library 2.1.3pre1.
3825 (get_date): Prefer tm_gmtoff to tm_diff if available.
3826
3827 1999-12-29 "Melissa O'Neill" <oneill@cs.sfu.ca>
3828
3829 * tests/incremen.sh: Invoke stat on newly created file so that its
3830 ctime is updated on Nextstep.
3831
3832 1999-12-21 Machael Stone <mstone@cs.loyola.edu>
3833
3834 * lib/getdate.y (get_date):
3835 Fix typo when checking for time_t overflow in time zone calculations.
3836
3837 1999-12-13 Paul Eggert <eggert@twinsun.com>
3838
3839 * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.16.
3840
3841 * README-alpha: New file.
3842 * README: New sections for gzip and bzip2, Solaris.
3843 Remove mention of BACKLOG.
3844
3845 * configure.in (AC_C_BACKSLASH_A): Add.
3846 (AC_CHECK_HEADERS): Add wchar.h.
3847 (AC_CHECK_FUNCS): Add mbrtowc.
3848 (AC_FUNC_CLOSEDIR_VOID): Add.
3849
3850 * tests/Makefile.am (TESTS): Add delete02.sh.
3851 (POSTPONED_TESTS): Remove.
3852 (EXTRA_DIST): Remove $(POSTPONED_TESTS).
3853
3854 * tests/preset.in:
3855 Set LC_ALL rather than LANGUAGE, LANG, and LC_MESSAGES.
3856
3857 * tests/ignfail.sh (err): Adjust to new quoting scheme.
3858
3859 * tests/delete02.sh: Fix typo: need to list archive2, not archive.
3860
3861 * tests/extrac03.sh: Use -P option, so that .. doesn't get diagnosed.
3862
3863 * src/tar.c ("quotearg.h"): New include.
3864 (usage): Now has __attribute__ ((noreturn)).
3865 (confirm): Report errno if we can't open tty.
3866 (confirm, decode_options):
3867 Quote arbitrary strings in diagnostics.
3868 (OVERWRITE_OPTION): New constant.
3869 (long_options, usage, decode_options): New --overwrite option.
3870 (decode_options): --keep-old-files, --overwrite, and --unlink-first
3871 are now mutually exclusive.
3872 Don't assume that gettext preserves errno.
3873 (main): Set default quoting style to escape_quoting_style.
3874
3875 * src/update.c (<quotearg.h>): New include.
3876 (append_file):
3877 Don't assume that gettext preserves errno.
3878 Quote arbitrary strings in diagnostics.
3879 Check for close error.
3880
3881 * src/names.c (<quotearg.h>): New include.
3882 (name_init, name_next, name_close, names_notfound,
3883 collect_and_sort_names): Don't assume that gettext preserves
3884 errno. Quote arbitrary strings in diagnostics.
3885 (excluded_name): Fix typo that caused empty patterns to be
3886 mishandled.
3887
3888 * src/misc.c (<quotearg.h>): New include.
3889 (quote_copy_string): Quote only newline and backslash; the output is no
3890 longer meant for humans, and is locale-independent.
3891 (contains_dot_dot): New function.
3892 (remove_any_file): Don't use lstat; just rmdir the file and then use
3893 unlink if the rmdir fails because the file isn't a directory.
3894 Check for readdir and closedir errors.
3895 (maybe_backup_file): Report "stat" for stat errors.
3896 (maybe_backup_file, chdir_do):
3897 Quote arbitrary strings in diagnostics.
3898 (maybe_backup_file, undo_last_backup):
3899 Don't assume that gettext preserves errno.
3900 (call_arg_error, call_arg_fatal, call_arg_warn,
3901 chdir_fatal, close_error, closedir_error, exec_fatal, mkfifo_error,
3902 mknod_error, open_error, open_fatal, open_warn, opendir_error,
3903 opendir_warn, read_error, read_fatal, readdir_error, readdir_warn,
3904 readlink_error, readlink_warn, seek_error, seek_warn, stat_error,
3905 stat_warn, truncate_error, truncate_warn, unlink_error, waitpid_error,
3906 write_error, write_fatal, xfork, xpipe, quote_n, quote): New functions.
3907
3908 * src/system.h (__attribute__): New macro.
3909 (O_NDELAY, O_NONBLOCK, O_APPEND): Remove.
3910 (S_ISDOOR): New macro.
3911 (closedir): New macro, if CLOSEDIR_VOID.
3912
3913 * src/rmt.c, src/rtapelib.c (decode_oflag):
3914 O_APPEND might not be defined.
3915
3916 * src/list.c: (read_and, list_archive):
3917 Quote arbitrary strings in diagnostics.
3918 (from_header): Use locale_quoting_style to quote diagnostics.
3919 (print_header, print_for_mkdir): Quote with quotearg, not quote_copy_string.
3920
3921 * src/rmt.h (REM_BIAS): Increase from 128 to (1 << 30).
3922
3923 * src/Makefile.am: Use ## for copyright comments.
3924
3925 * src/extract.c (<quotearg.h>): New include.
3926 (enum permstatus): New enum.
3927 (struct delayed_set_stat): file_name is now at end of buffer, to avoid
3928 two mallocs. New members file_name_len, invert_permissions, permstatus.
3929 (extr_init): Remove hack that silently adjusted newdir_umask.
3930 (set_mode, set_stat): New args invert_permissions, permstatus, typeflag.
3931 Use these args to decide whether and how to set modes.
3932 (set_mode, set_stat, prepare_to_extract, extract_sparse_file, extract_archive):
3933 Don't assume that gettext preserves errno.
3934 (set_stat): Remove arg symlink_flag; subsumed by typeflag.
3935 (delay_set_stat, repair_delayed_set_stat): New functions.
3936 (make_directories): Avoid mkdir where last part of path is "..".
3937 Create a struct delayed_set_stat for each directory made.
3938 (prepare_to_extract): Renamed from unlink_destination, and
3939 return 0 immediately if to_stdout_option; all callers changed.
3940 (maybe_recoverable): New parameter interdir_made.
3941 Add support for --overwrite.
3942 (extract_sparse_file, extract_archive):
3943 Quote arbitrary strings in diagnostics.
3944 (extract_archive): By default, warn about ".." in member names, and skip them.
3945 Don't open files with O_NONBLOCK or O_APPEND.
3946 Open with O_TRUNC only if --overwrite; otherwise, use O_EXCL to avoid
3947 overwriting them. Pass only rwxrwxrwx permissions to `open' and `mkdir',
3948 minus the current umask. Keep track of intermediate directories made,
3949 to avoid looping when making x/../x when x doesn't exist; the
3950 earlier code solved this in a different way that didn't fit well
3951 into the new scheme. Don't extract permissions onto existing
3952 directories unless --overwrite is given. Do not add -wx------
3953 permissions to new directories permanently; just do it temporarily.
3954 Remove no-longer-needed hack with MSDOS and directory time stamps.
3955 (apply_delayed_set_stat): New argument specifies which directories to
3956 fix statuses of. Do not wait until the end of extraction to fix
3957 statuses; instead, fix a directory's status once we exit that directory.
3958 This requires less memory and does the right thing in some cases
3959 where the old method didn't.
3960 (fatal_exit): New function.
3961
3962 * src/incremen.c (<quotearg.h>): New include.
3963 (get_directory_contents, gnu_restore):
3964 Check for readdir and closedir errors.
3965 (get_directory_contents, read_directory_file, gnu_restore):
3966 Quote arbitrary strings in diagnostics.
3967 (get_directory_contents, read_directory_file, write_directory_file):
3968 Don't assume that gettext preserves errno.
3969
3970 * src/create.c (<quotearg.h>): New include.
3971 (start_header): Use `member names' to refer to archive member names, not
3972 `archive names'. Warn about `..' in member names.
3973 (finish_sparse_file, dump_file):
3974 Quote arbitrary strings in diagnostics.
3975 (finish_sparse_file, dump_file):
3976 Don't assume that gettext preserves errno.
3977 (dump_file): Don't use `access' to determine whether a directory is readable;
3978 this isn't reliable if tar is setuid. Use `opendir' instead.
3979 Check for readdir and closedir failures.
3980 Don't dump sockets as if they were fifos; just warn and skip.
3981
3982 * src/delete.c (move_archive):
3983 Don't report fatal error merely because sizes don't fit
3984 into struct mtop values; fall back on lseek instead.
3985 Say `Cannot' uniformly, instead of `Could not' sometimes and `Cannot' others.
3986 Say `reposition' instead of `re-position'.
3987 (delete_archive_members):
3988 Set archive to STDOUT_FILENO before outputting trailing buffer.
3989
3990 * src/compare.c (<quotearg.h>): New include.
3991 (diff_init): Use `Cannot' uniformly, instead of `Could not' sometimes
3992 and `Cannot' others.
3993 (report_difference, diff_archive):
3994 Quote arbitrary strings in diagnostics.
3995 (process_rawdata, diff_sparse_files, get_stat_data, diff_archive, seek_warn):
3996 Don't assume that gettext preserves errno.
3997 (diff_archive): Don't open regular files with O_NONBLOCK.
3998 Preserve access times of files if --atime.
3999
4000 * src/common.h (FATAL_ERROR): Use new fatal_exit function to exit.
4001 (FATAL_ERROR, USAGE): Don't return 0.
4002 (enum old files): New enum.
4003 (old_files_option): New variable, replacing keep_old_files_option and
4004 unlink_first_option.
4005 (apply_delayed_set_stat): Now takes char const * param.
4006 (fatal_exit, contains_dot_dot, chdir_fatal, close_error,
4007 closedir_error, exec_fatal, mkfifo_error, mknod_error, open_error,
4008 open_fatal, open_warn, opendir_error, opendir_warn, read_error,
4009 read_fatal, readdir_error, readdir_warn, readlink_error,
4010 readlink_warn, seek_error, seek_warn, stat_error, stat_warn,
4011 truncate_error, truncate_warn, unlink_error, waitpid_error,
4012 write_error, write_fatal, xfork, xpipe, quote, quote_n): New decls.
4013
4014 * src/buffer.c:
4015 (xclose, xdup2, child_open_for_compress, child_open_for_uncompress,
4016 archive_write_error, archive_read_error, flush_archive, close_archive,
4017 init_volume_number, new_volume):
4018 Don't assume that gettext preserves errno.
4019
4020 (xdup2): Don't report errno if dup returns an unexpected nonnegative value.
4021 (open_archive): Reject multivolume verify attempts a bit earlier.
4022 Rename local variable `access', in case it's defined by system header.
4023
4024 (open_archive, backspace_output): Use `Cannot' uniformly, instead of
4025 `Could not' sometimes and `Cannot' others.
4026
4027 (open_archive, flush_read, flush_archive, close_archive, new_volume):
4028 Quote arbitrary strings in diagnostics.
4029
4030 (read_error): Set archive to STDOUT_FILENO temporarily when writing
4031 archive buffer.
4032
4033 (init_volume_number): Check for input and output errors in volno_file.
4034
4035 (new_volume): Use new fatal_exit function to exit, and new xfork
4036 function to fork.
4037
4038 * m4/Makefile.am (EXTRA_DIST): Add c-bs-a.m4.
4039
4040 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/c-bs-a.m4.
4041
4042 * doc/tar.texi: Add --overwrite.
4043 --absolute-names rejects ".." in names.
4044
4045 * lib/quotearg.c: Add support for multibyte characters.
4046 (ISGRAPH): Remove.
4047 (ISPRINT): New macro.
4048 (<wchar.h>): Include if HAVE_MBRTOWC && HAVE_WCHAR_H.
4049 (isprint, mbrtowc, mbsinit, mbstate_t): New macros,
4050 defined if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
4051 (quotearg_buffer_restyled): New function, with most of the old
4052 quotearg_buffer's contents.
4053 Major rewrite to support multibyte characters.
4054 (quotearg_buffer): Now just calls quotearg_buffer_restyled.
4055
4056 * m4/c-bs-a.m4: New file.
4057
4058 * lib/Makefile.am: Use ## for copyright notice.
4059
4060 * scripts/Makefile.am: Use ## on copyright notice.
4061
4062 * doc/Makefile.am:
4063 ($(srcdir)/tar.info, tar.dvi): We now use texinfo 4.0.
4064
4065 1999-12-05 Paul Eggert <eggert@twinsun.com>
4066
4067 * doc/ChangeLog, lib/ChangeLog, scripts/ChangeLog,
4068 src/ChangeLog, tests/ChangeLog: Remove these files.
4069 * ChangeLog.1: New file, incorporating the above files, plus old
4070 ChangeLog entries.
4071 * Makefile.am (EXTRA_DIST): Add ChangeLog.1.
4072
4073 1999-12-05 Dale Worley <worley@ariadne.com>
4074
4075 * src/compare.c (<utime.h>, struct utimbuf): Add.
4076 (diff_archive): Restore access times if --atime.
4077 * doc/tar.texi: Explain that --atime also preserves modification time.
4078
4079 1999-12-04 Gerhard Poul <gpoul@gnu.org>
4080
4081 * ABOUT-NLS: Update to latest version from ftp.gnu.org.
4082 * BACKLOG, TODO: Remove.
4083 * Makefile.am (all-local, BABYL, dist-zoo, id, ID): Remove.
4084 * README: Bring up to date.
4085
4086 1999-12-03 Paul Eggert <eggert@twinsun.com>
4087
4088 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.15.
4089
4090 * src/compare.c (diff_archive):
4091 Do not set errno to EPIPE; we no longer use perror.
4092
4093 * src/create.c (dump_file):
4094 If a parent directory said that a file should be there but it is
4095 absent, diagnose it as being removed in the meantime.
4096 Do not pass meaningless errno to ERROR when reporting that the
4097 file changed as we read it.
4098 Report that a file changed if its ctime changes; this is more
4099 sensitive than mtime+size, and more accurate.
4100
4101 * src/incremen.c (enum children): New type.
4102 (struct directory): Change old char allnew member to new enum children
4103 children member.
4104 All uses changed.
4105 (get_directory_contents): When doing an incremental dump that does
4106 not cross filesystem boundaries, dump the mount points, even though
4107 they are in a different filesystem. This is for convenience when
4108 restoring, and for consistency with non-incremental dumps.
4109 This requires a 3-way flag for keeping track of which children we want,
4110 so we use enum children rather than boolean.
4111
4112 * src/open3.c (modes): Remove.
4113 (open3): Remove unportable assumptions about flag encodings.
4114 Use `stat' instead of `access' for testing file existence,
4115 to avoid problems with setuid programs.
4116
4117 * src/names.c (name_next): If file names are given both in the
4118 command line (e.g. via -C) and in a file (via -T), do not
4119 ignore the command-line names.
4120
4121 * m4/uintmax_t.m4: Backport to autoconf 2.13.
4122
4123 * doc/tar.texi: Clarify getdate authorship.
4124
4125 1999-11-23 Paul Eggert <eggert@twinsun.com>
4126
4127 * lib/Makefile.am (DISTCLEANFILES): New macro.
4128
4129 * configure.in (tar_fnmatch_hin):
4130 Remove; it runs afoul of a bug in autoconf 2.13.
4131 Instead, always link fnmatch.h to some file, even if it's a throwaway.
4132
4133 1999-11-19 Paul Eggert <eggert@twinsun.com>
4134
4135 * m4/largefile.m4: Update serial.
4136
4137 1999-11-18 Paul Eggert <eggert@twinsun.com>
4138
4139 * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a bug in
4140 the QNX shell, which doesn't propagate exit status of failed
4141 commands inside shell assignments.
4142
4143 1999-11-07 Paul Eggert <eggert@twinsun.com>
4144
4145 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.14.
4146
4147 * configure.in (AC_PREREQ): Bump to 2.13.
4148 (ALL_LINGUAS): Add pt_BR, ja.
4149 (AC_FUNC_FNMATCH): Remove lib/funmatch.h before invoking, not after.
4150 (tar_cv_path_RSH): Prefer a non-symlink rsh to a symlink one,
4151 for AIX crossbuilds.
4152
4153 * doc/tar.texi: New node create options for --ignore-failed-read.
4154 Remove unused version control symbols.
4155 Modernize texinfo usage.
4156
4157 * src/tar.c (usage): Add examples.
4158
4159 * m4/fnmatch.m4 (AC_FUNC_FNMATCH):
4160 Include fnmatch.h when testing fnmatch.
4161
4162 * src/common.h (collect_and_sort_names): New decl.
4163
4164 * src/list.c (from_header):
4165 Handle 32-bit two's complement negative time stamps
4166 even if the leading octal digit is 2 or 3.
4167
4168 * src/extract.c (set_stat): Remove duplicate code.
4169
4170 * src/create.c (to_chars): Remove trailing newline from warning.
4171 (dump_file): Ignore doors.
4172 (finish_header): Report block numbers with origin 0, not origin 1.
4173
4174 * src/rmt.c: Include getopt.h.
4175 (long_opts): New constant.
4176 (usage): New function.
4177 (main): Implement --help and --version.
4178 Output usage message if arguments are bad.
4179
4180 1999-10-10 Paul Eggert <eggert@twinsun.com>
4181
4182 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.13.
4183
4184 * README: Remove --with-dmalloc.
4185 Add --disable-largefile.
4186 Remove old NeXT dirent problems, or AIX valloc problems.
4187 Remove old union wait advice, and old %lld advice.
4188 Remove advice about FreeBSD 2.1.7, ISC 4.1mu, Ultrix `make'.
4189
4190 * doc/tar.texi: Clarify documentation for portable file names.
4191
4192 * configure.in (AM_WITH_DMALLOC): Remove.
4193 (ALL_LINGUAS): Add ja.
4194
4195 * src/tar.c (decode_options):
4196 Invalid dates are now treated as (time_t) -1.
4197 Redo version message to conform to GNU standards.
4198
4199 * src/create.c (dump_file):
4200 Fix typo: last two args to dump_file were interchanged.
4201 * src/update.c (update_archive): Likewise.
4202
4203 * src/common.h (tartime): New decl.
4204
4205 * src/list.c (tartime): Now extern.
4206 (read_and): Invalid headers cause errors, not warnings.
4207
4208 1999-10-03 Paul Eggert <eggert@twinsun.com>
4209
4210 * lib/getdate.y (__attribute__):
4211 Don't use if GCC claims to be before 2.8; this is
4212 needed for OPENStep 4.2 cc. Also, don't use if strict ANSI.
4213
4214 1999-09-25 Paul Eggert <eggert@twinsun.com>
4215
4216 * lib/fnmatch.c, lib/fnmatch.hin: Merge changes from latest glibc.
4217 * lib/getopt.c, lib/getopt.h, lib/getopt1.c: Likewise.
4218
4219 * tests/incremen.sh: Add yet another sleep.
4220
4221 1999-09-24 Paul Eggert <eggert@twinsun.com>
4222
4223 * NEWS: A read error now causes a nonzero exit status.
4224
4225 * src/create.c (to_chars): Fix base-256 output.
4226
4227 * src/buffer.c (write_error):
4228 Read error is an error, not just a warning.
4229
4230 1999-09-24 Paul Eggert <eggert@twinsun.com>
4231
4232 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.12.
4233
4234 * src/tar.c (<time.h>): Include.
4235 (time): Declare if not defined.
4236 (confirm): Don't read past EOF.
4237 (long_options, usage): Add --no-same-owner, --no-same-permissions.
4238 (main): Use clock_gettime if available.
4239
4240 * tests/Makefile.am (TESTS): Add incremen.sh
4241 (INCLUDES): Add -I../lib, for fnmatch.h.
4242
4243 * src/update.c (update_archive):
4244 Remove call to name_expand; had no effect.
4245 Use chdir_do to change into directory.
4246 Use deref_stat instead of stat.
4247 Use add_avoided_name to mark names to be avoided; the old method of
4248 setting a bit with the name caused all descendants of that name to
4249 be avoided, in some circumstances.
4250
4251 * tests/incremen.sh: Remove unnecessary sleeps.
4252
4253 * src/names.c (name_next): Go back to using plain chdir.
4254 (name_gather): Use chdir_arg to keep track of arguments to chdir.
4255 (addname): Likewise.
4256 (name_match): Use chdir_do to act on chdir args.
4257 (merge_sort): Moved here from incremen.c.
4258 (compare_names, add_hierarchy_to_namelist, collect_and_sort_names):
4259 Likewise.
4260 (name_expand): Remove.
4261 (name_from_list): Skip fake names.
4262 Use chdir_do to act on chdir args.
4263 (struct avoided_name): New struct.
4264 (avoided_names): New var.
4265 (add_avoided_name, is_avoided_name): New functions.
4266
4267 * src/system.h (stat, lstat): Define in terms of statx on
4268 STX_HIDDEN && !_LARGE_FILES /* AIX */ hosts.
4269 (UCHAR_MAX): New macro.
4270 (TYPE_MAXIMUM): Cast to arg type, for types narrow than int.
4271
4272 * m4/largefile.m4: Work around GCC 2.95.1 bug with HP-UX 10.20.
4273
4274 * src/incremen.c (<time.h>): Remove include; no longer used.
4275 (time): Remove decl.
4276 (time_now): Remove.
4277 (get_directory_contents): Use deref_stat.
4278 Consider a subdirectory to be all new only if
4279 listed_incremental_option or if it its timestamp is newer than the
4280 cutoff.
4281 (add_hierarchy_to_namelist, merge_sort): Move to names.c.
4282 (read_directory_file): Now extern. Do not set time_now.
4283 (write_directory_file): Renamed from write_dir_file.
4284 Use start_time instead of time_now.
4285 (compare_names, collect_and_sort_names): Move to names.c.
4286
4287 * src/mangle.c (<time.h>): Remove; not used.
4288 (time): Do not declare.
4289
4290 * src/misc.c (chdir_from_initial_wd): Remove.
4291 (deref_stat): New function.
4292 (struct wd): New struct.
4293 (wd, wds, wd_alloc): New variables.
4294 (chdir_arg, chdir_do): New function.
4295
4296 * src/compare.c (get_stat_data): Use deref_stat.
4297
4298 * src/common.h (name_expand): Remove.
4299
4300 * src/list.c (time): Declare if not defined.
4301 (base_64_digits): Moved here from create.c.
4302 (base64_map): Use UCHAR_MAX for size, not less-clear (unsigned char)
4303 -1.
4304 (read_and): Don't get time from header unless we need it now;
4305 as getting time can cause duplicate diagnostics if bogus.
4306 Remove "Hmm, " from diagnostic.
4307 Use "Skipping to next header" uniformly.
4308 (from_header): Renamed from from_chars. All uses changed.
4309 Allow different forms for unportable 2's complement numbers.
4310 Don't check for extended forms when parsing checksums.
4311 Parse base-256 output.
4312 (gid_from_header): Renamed from gid_from_chars. All uses changed.
4313 (major_from_header): Renamed from major_from_chars. All uses changed.
4314 (minor_from_header): Renamed from minor_from_chars. All uses changed.
4315 (mode_from_header): Renamed from mode_from_chars. All uses changed.
4316 (off_from_header): Renamed from off_from_chars. All uses changed.
4317 (size_from_header): Renamed from size_from_chars. All uses changed.
4318 (time_from_header): Renamed from time_from_chars. All uses changed.
4319 Warn about future timestamps.
4320 (uid_from_header): Renamed from uid_from_chars. All uses changed.
4321 (uintmax_from_header): Renamed from uintmax_from_chars.
4322 All uses changed.
4323 (tartime): New function, incorporating isotime.
4324 (isotime): Delete.
4325 (print_header): Use tartime.
4326
4327 * src/create.c (to_chars): Fix typo in decl.
4328 Don't assign through char const *.
4329 Rename name_expand back to collect_and_sort_names.
4330
4331 * src/extract.c (<time.h>): No need to include.
4332 (time): No need to declare.
4333 (now): Remove variable.
4334 (extr_init): Don't initialize `now'.
4335 Increment same_permissions_option and same_owner_option if we_are_root
4336 is nonzero; this supports the new --no-same-owner option.
4337 (set_stat): Use start_time instead of `now'.
4338
4339 * src/create.c (struct link): Remove unused linkcount member.
4340 (base_64_digits): Move to list.c.
4341 (base_8_digits): Remove.
4342 (to_octal): New function, with some of old contents of to_base.
4343 (to_base): Remove.
4344 (to_base256): New function.
4345 (to_chars): Use base 256, not base 64, for huge values.
4346 (mode_to_chars): Don't use two's complement in GNU format or POSIX
4347 format.
4348 (dump_file): Interchange last two arguments. If TOP_LEVEL is negative,
4349 it means we have an incremental dump where we don't know whether this
4350 is a top-level call.
4351 Use deref_stat instead of statx / stat / lstat.
4352 Cast result of alloca.
4353 Check for dates if 0 < top_level, not if listed_incremental_option.
4354 Move multiple-link check after directory check.
4355 Do not dump avoided names.
4356 Dump hard links to symbolic names as links, not as separate
4357 symbolic links.
4358 start_header cannot return a null pointer, so don't test for it.
4359 Likewise for find_next_block.
4360
4361 * src/buffer.c, src/common.h (<human.h>): Include.
4362 (read_error): Read error is an error, not just a warning.
4363 (print_total_written): Also print human-readable byte count, and
4364 bytes/s.
4365 (open_archive, flush_write): Use start_time, not current time.
4366 (flush_read): Report about garbage bytes ignored at end of archive,
4367 but act on non-garbage bytes (instead of ignoring them).
4368 (new_volume): Use WARN for warnings.
4369
4370 * doc/Makefile.am:
4371 ($(srcdir)/tar.info): Add -I$(srcdir) so that subdir builds work.
4372
4373 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/fnmatch.m4.
4374
4375 * m4/Makefile.am (EXTRA_DIST): Add fnmatch.m4.
4376
4377 * lib/Makefile.am (noinst_HEADERS):
4378 Rename fnmatch.h to fnmatch.hin; add human.h.
4379 (libtar_a_SOURCES): Add human.c, xstrtoul.c.
4380 (INCLUDES): Remove -I.. -I$(srcdir) -- automake adds this for us.
4381
4382 * src/Makefile.am (rmt_LDADD, tar_LDADD): New macros.
4383
4384 * lib/fnmatch.c (strchrnul):
4385 Define to __strchrnul if _LIBC, to our own replacement otherwise.
4386 Do not define if !_LIBC and if it already exists.
4387 (internal_fnmatch): Use it.
4388
4389 * configure.in (tar_LDADD): New variable, used only when linking tar.
4390 (rmt_LDADD): Similarly, for rmt.
4391 (AC_FUNC_FNMATCH): Link fnnmatch.hin to fnmatch.h if we're using our
4392 fnmatch.c; otherwise, use the system fnmatch.h.
4393
4394 * doc/tar.texi: Add --no-same-owner, --no-same-permissions.
4395 Modernize sample backup script.
4396
4397 * THANKS: Martin Goik's email address has changed.
4398
4399 * m4/fnmatch.m4: New file.
4400
4401 1999-09-03 Paul Eggert <eggert@twinsun.com>
4402
4403 * lib/lchown.h (ENOSYS): Don't use ENOMSG; it's not in NeXTStep3.3.
4404 Use EINVAL instead.
4405
4406 1999-08-29 Paul Eggert <eggert@twinsun.com>
4407
4408 * lib/getdate.y (get_date):
4409 Rename outermost local `probe' to `quarter'.
4410 Rename latter local `tm' to probe_tm.
4411 From: Jim Meyering <meyering@ascend.com>
4412 Message-ID: <uryn1vafyyc.fsf@ixi.eng.ascend.com>
4413
4414 1999-08-28 Paul Eggert <eggert@twinsun.com>
4415
4416 * lib/getdate.y (PC): New macro; use it when possible.
4417 (number): Handle `Nov 11 1996' example correctly.
4418 See Risks Digest 20.55 (1999-08-27)
4419 http://catless.ncl.ac.uk/Risks/20.55.html#subj18
4420
4421 1999-08-23 Paul Eggert <eggert@twinsun.com>
4422
4423 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.11.
4424
4425 Remove minor cases of lint from many source files: this includes
4426 unnecessary casts, uses of NULL, etc.
4427
4428 * configure.in (AC_PROG_YACC): Remove.
4429 (YACC): Always use bison.
4430 (AC_STRUCT_TIMEZONE): Add.
4431 (AC_REPLACE_FUNCS): Add strcasecmp, strncasecmp.
4432
4433 * doc/tar.texi: --bzip2 is now -I. Remove obsolete time zone info.
4434 Fix spelling.
4435
4436 * lib/Makefile.am (EXTRA_DIST): Add strcasecmp.c, strncasecmp.c.
4437 ($(srcdir)/getdate.c): Rename y.tab.c to getdate.c only if successful.
4438
4439 * lib/strcasecmp.c, lib/strncasecmp.c: New files.
4440
4441 * src/common.h (merge_sort): Remove decl; no longer exported.
4442
4443 * src/system.h (voidstar): Remove.
4444 (memcpy, memcmp): Cast args.
4445 ("xalloc.h"): Add include.
4446 (xmalloc, xrealloc): Remove decl.
4447
4448 * src/mangle.c (time): Do not declare if defined.
4449 (first_mangle, mangled_num): Remove.
4450
4451 * src/list.c (from_chars): Report out-of-range values more precisely.
4452 (off_from_chars): Do not allow negative offsets.
4453 (uid_from_chars): Allow negative uids.
4454
4455 * src/create.c (linklist): Now static.
4456 (to_chars): Fix wording of message to match from_chars.
4457
4458 * src/misc.c (merge_sort): Move to incremen.c.
4459 * src/incremen.c (merge_sort): Move here from misc.c; now static.
4460 It's too painful to make it both generic and portable.
4461 (read_directory_file): "timestamp" -> "time stamp" in messages.
4462
4463 * src/tar.c (long_options, usage, main): -y is now -I (for --bzip).
4464 (usage): Fix misspelling.
4465 (OPTION_STRING): -y is now -I.
4466 (decode_options): Use -1, not EOF, for getopt_long result.
4467 Fix typo when invoking xstrtoumax: look for LONGINT_OK, not LONG_MAX.
4468 Handle operands after any "--" argument.
4469 (main): Report any output errors.
4470
4471 * src/rmt.c (main): status is ssize_t, not long.
4472
4473 * src/names.c (name_gather): Handle trailing -C option correctly.
4474 (addname): use memcpy, not strncpy, to copy a string of known length.
4475 (name_match): Handle trailing -C option correctly.
4476 Propagate -C option to following files.
4477 (name_match, name_scan): Remove redundant matching code.
4478
4479 * src/buffer.c (open_archive): Use American spelling in diagnostic.
4480
4481 * lib/getdate.y: Major rewrite. Add copyright notice.
4482 (<stdio.h>): Include only if testing.
4483 (ISUPPER): Remove.
4484 (ISLOWER): New macro.
4485 (<string.h>): Include if HAVE_STRING_H, not USG.
4486 (bcopy): Remove.
4487 (yymaxdepth, ..., yycheck): Don't bother to redefine, since we assume
4488 bison.
4489 (EPOCH_YEAR): Renamed from EPOCH.
4490 (table): Renamed from TABLE.
4491 (meridian): Now an anonymous enum.
4492 (struct parser_control): New type.
4493 (YYLEX_PARAM, YYPARSE_PARAM, YYSTYPE): New macros.
4494 (yyInput, ..., yyRelYear): Migrated into struct parser_control.
4495 (%pure_parser): Added, so that the parser is pure.
4496 (%union): Removed; the type is now just plain int.
4497 All %type directives removed.
4498 (tLOCAL_ZONE): New %token.
4499 (month_day_table): Renamed from MonthDayTable.
4500 (gmtime, localtime, mktime, time): Declare only if not defined.
4501 (meridian_table): New table.
4502 (dst_table): New table.
4503 (units_table): renamed from UnitsTable.
4504 (relative_time_table): Renamed from OtherTable.
4505 (time_zone_table): Renamed from TimezoneTable. Modernized.
4506 (military_table): Renamed from MilitaryTable.
4507 (to_hour): Renamed from ToHour.
4508 (to_year): Renamed from ToYear.
4509 (lookup_zone): New function.
4510 (LookupWord): Renamed from lookup_word. Use lookup_zone for time
4511 zones.
4512 (yylex): Now reentrant. All callers changed.
4513 (get_date): Add support for local time zone abbreviations.
4514 Make it reentrant.
4515
4516 1999-08-20 Paul Eggert <eggert@twinsun.com>
4517
4518 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.10.
4519
4520 * src/create.c (to_chars): Generate GNU base-64 representation
4521 if we are generating an old or new GNU format tar file for a
4522 number that can't be represented with the POSIX format.
4523
4524 * configure.in (AC_CHECK_FUNCS): Add fchdir.
4525 (AM_FUNC_GETLINE): Add.
4526 (LIBOBJS): Add getline.o to workaround comment.
4527 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/getline.m4.
4528 * m4/Makefile.am (EXTRA_DIST): Add getline.m4.
4529 * lib/Makefile.am (noinst_HEADERS): Add getline.h, save-cwd.h.
4530 (libtar_a_SOURCES): Add save-cwd.c, xgetcwd.c.
4531 * lib/getline.c, lib/getline.h, lib/save-cwd.c,
4532 lib/save-cwd.h, m4/getline.m4: New files.
4533
4534 * src/misc.c (<save-cwd.h>): Include.
4535 (chdir_from_initial_wd): New function.
4536
4537 * src/names.c (name_next): Use chdir_from_initial_wd, not chdir.
4538 (name_gather): Handle `-C x -C y' correctly.
4539 Do not rely on addname to handle -C.
4540 (addname): New CHANGE_DIR parameter. All callers changed.
4541 Remove ugly calls to getcwd; no longer needed.
4542 (name_match, name_from_list): Use chdir_from_initial_wd, not chdir.
4543
4544 * src/incremen.c (listed_incremental_stream): New var.
4545 (read_directory_file): Remove arbitrary limits on file name length.
4546 Do not attempt to get the working directory; we can bypass this
4547 on fchdir hosts. Open the listed_incremental_option file for both
4548 read and write instead of opening it twice. Check for I/O errors
4549 when doing I/O to this file. Check for invalid data in the file,
4550 and report line numbers of invalid data.
4551 (write_dir_file): Likewise.
4552 (collect_and_sort_names): Use chdir_from_initial_wd, not chdir.
4553 Do not invoke write_dir_file; that's our caller's responsibility.
4554
4555 * src/list.c (max): New macro.
4556 (isotime): Now takes time_t, not time_t *. Report the decimal values
4557 of times that can't be broken down.
4558 (print_header): Don't assume that major and minor device numbers can
4559 fit into uintmax_t.
4560
4561 * src/common.h (struct name): change_dir is now char const *.
4562 (write_directory_file): Remove unused decl.
4563 (STRINGIFY_BIGINT): Assume b always points to UINTMAX_STRSIZE_BOUND
4564 chars; the old `sizeof (b)' broke when b was a pointer not an array.
4565 (chdir_from_initial_wd): New decl.
4566 (addname): New 2nd arg.
4567
4568 * THANKS: Torsten Lull -> Catrin Urbanneck
4569
4570 1999-08-18 Paul Eggert <eggert@twinsun.com>
4571
4572 * configure.in (HAVE_GETHOSTENT, HAVE_SETSOCKOPT):
4573 Don't depend on ac_cv_func variables.
4574 From Albert Chin-A-Young <china@thewrittenword.com>.
4575
4576 1999-08-18 Paul Eggert <eggert@twinsun.com>
4577
4578 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.9
4579
4580 * m4/signedchar.m4: New file.
4581 * configure.in (pe_AC_TYPE_SIGNED_CHAR): Add.
4582 * src/system.h (signed_char): New macro.
4583 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/signedchar.m4.
4584 * m4/Makefile.am (EXTRA_DIST): Add signedchar.m4.
4585
4586 * src/create.c (write_eot): Write at least two zero blocks.
4587
4588 * src/extract.c (extract_archive): Fix sparse array bug:
4589 we did not find end of array correctly.
4590
4591 * src/compare.c: (fill_in_sparse_array, diff_sparse_files):
4592 Don't assume find_next_block yields nonnull.
4593 * src/extract.c (extract_sparse_file, extract_archive): Likewise.
4594 * src/list.c (skip_extended_headers): Likewise.
4595
4596 * src/list.c (read_and, list_archive): Simplify code.
4597 (read_header): Fix computation of signed checksums on machines where
4598 char is unsigned.
4599 Do not consider a block to be zero unless all its bytes are zero,
4600 even the checksum bytes. Do not attempt to parse the checksum of
4601 a zero block. Fix memory leak with long names and links.
4602 (from_chars): Accommodate a buggy tar that outputs leading NUL
4603 if the previous field overflows.
4604
4605 * src/misc.c (quote_copy_string): Generate \177 for '\177', not
4606 \?, for portability to non-ASCII hosts.
4607
4608 1999-08-16 Paul Eggert <eggert@twinsun.com>
4609
4610 * configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.8.
4611
4612 * src/extract.c (make_directories): Do not chown intermediate
4613 directories, even if we are root.
4614
4615 * src/list.c (read_header): Fix bugs when interpreting
4616 POSIX-compliant headers that do not contain null bytes in the
4617 header or link names.
4618
4619 1999-08-14 Paul Eggert <eggert@twinsun.com>
4620
4621 * configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.7.
4622
4623 * configure.in (AC_CHECK_HEADERS): Remove sys/wait.h.
4624 (AC_HEADER_SYS_WAIT): Add.
4625 (AC_REPLACE_FUNCS): Add waitpid.
4626 (tar_cv_header_union_wait, HAVE_UNION_WAIT): Remove.
4627 * lib/waitpid.c: New file.
4628 * lib/Makefile.am (EXTRA_DIST): Add waitpid.c.
4629 * src/system.h (WCOREDUMP): Remove; no longer used.
4630 (WIFSTOPPED): Likewise.
4631 (WEXITSTATUS, WIFSIGNALED): Default to Solaris 7 versions.
4632 * src/buffer.c (child_open_for_compress): Undo previous change.
4633 (close_archive): Use waitpid, POSIX-style, instead of old BSD style.
4634 (new_volume): Likewise.
4635
4636 * src/buffer.c, src/extract.c, src/incremen.c (time):
4637 Don't declare if defined.
4638 * src/extract.c (extr_init): Remove unneeded cast around 0 arg to time.
4639 * src/incremen.c (read_directory_file):
4640 Invoke `time' the same way everyone else does.
4641 Check validity of --listed-incremental file contents a bit better.
4642 Do not worry about --after-date-option; tar.c now checks this.
4643 * src/list.c (isotime): Report ??? if localtime returns null.
4644 Don't assume years fit into four digits.
4645 Don't append trailing newline.
4646 (print_header): Report ??? if localtime returns null;
4647 Don't assume years fit into four digits.
4648
4649 * src/compare.c (diff_archive): Do not fall back on absolute name
4650 when --absolute-names is not specified.
4651
4652 * src/create.c (start_header):
4653 Include text of ignored filesystem prefix in warning.
4654 (create_archive): Check for excluded names when doing incremental
4655 pass through directory.
4656 (dump_file): Do not dump old files explicitly given on command line
4657 when using --listed-incremental. Do not strip ./ prefix from names.
4658
4659 * src/tar.c: -g now implies after_date_option = 1.
4660 -g and -N are now incompatible options.
4661
4662 * doc/tar.texi: Explain --exclude better. Don't strip leading `./'.
4663
4664 1999-08-11 Jeff Dairiki <dairiki@dairiki.org>
4665
4666 * src/list.c (read_header): Don't parse OLDGNU_FORMAT
4667 incremental headers as POSIX prefixes.
4668
4669 1999-08-11 Paul Eggert <eggert@twinsun.com>
4670
4671 * NEWS, configure.in: Version 1.13.6.
4672
4673 * configure.in (ALL_LINGUAS): Add pt_BR.
4674 * po/pt_BR.po: New file.
4675
4676 * doc/Makefile.am ($(srcdir)/tar.info, $(srcdir)/header.texi):
4677 Renamed from tar.info and header.texi; adjust actions so that
4678 they work in other directories.
4679
4680 * doc/tar.texi: Add -y and --bzip2.
4681 Patterns containing / now exclude only file names whose prefix match.
4682
4683 * lib/exclude.h (excluded_filename): New option parameter.
4684 (add_exclude_file): New ADD_FUNC parameter.
4685 (excluded_pathname): Remove decl.
4686 * lib/exclude.c (_GNU_SOURCE):
4687 Remove; no longer needed since we don't use FNM_ macros.
4688 (excluded_filename): Renamed from excluded_filename_opts.
4689 (excluded_filename, excluded_pathname): Remove.
4690 (add_exclude_file): New ADD_FUNC parameter.
4691
4692 * po/POTFILES.in: Add lib/quotearg.c.
4693
4694 * src/buffer.c (_GNU_SOURCE): Define.
4695 (<fnmatch.h>): Include unconditionally.
4696 (child_open_for_compress): Dup after closing, to avoid possible file
4697 descriptor exhaustion.
4698 (flush_write): Use FILESYSTEM_PREFIX_LEN instead of MSDOS ifdef.
4699 (flush_read): Likewise.
4700
4701 * src/common.h (LG_8, LG_64): New macros.
4702 (excluded_with_slash, excluded_without_slash): New vars.
4703 (excluded): Remove.
4704 (base_64_digits): New decl.
4705 (gid_to_chars, major_to_chars, minor_to_chars, mode_to_chars,
4706 off_to_chars, size_to_chars, time_to_chars, uid_to_chars,
4707 uintmax_to_chars,
4708 GID_TO_CHARS, MAJOR_TO_CHARS, MINOR_TO_CHARS, MODE_TO_CHARS,
4709 OFF_TO_CHARS, SIZE_TO_CHARS, TIME_TO_CHARS, UID_TO_CHARS,
4710 UINTMAX_TO_CHARS):
4711 Renamed from gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct,
4712 off_to_oct, size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct,
4713 GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT, MODE_TO_OCT, OFF_TO_OCT,
4714 SIZE_TO_OCT, TIME_TO_OCT, UID_TO_OCT, UINTMAX_TO_OCT,
4715 respectively. All definitions and uses changed.
4716 (excluded_name): New decl.
4717
4718 * src/compare.c (diff_archive):
4719 Open files with O_NONBLOCK instead of O_NDELAY.
4720
4721 * src/create.c (base_64_digits): New constant.
4722 (base_8_digits): New macro.
4723 (MAX_VAL_WITH_DIGITS): New macro.
4724 (to_base): First half of old to_oct. Support base 64 too.
4725 (to_chars): Other half of old to_oct, for 64-bit support.
4726 (GID_NOBODY, UID_NOBODY): Don't define if the headers don't.
4727 (gid_substitute, uid_substitute): Look up names dynamically if
4728 GID_NOBODY and UID_NOBODY aren't defined; use -2 if all else fails.
4729 (mode_to_chars): Renamed from mode_to_oct.
4730 Support negative values in all the _to_chars functions.
4731 (start_header): Use FILESYSTEM_PREFIX_LEN instead of MSDOS ifdef.
4732 Abort if archive format is DEFAULT_FORMAT when it shouldn't be.
4733 (dump_file): Inspect entire pathname, not just new file name
4734 component, when deciding whether to exclude it.
4735
4736 * src/extract.c (extract_archive):
4737 Open files with O_NONBLOCK instead of O_NDELAY.
4738
4739 * src/incremen.c (get_directory_contents):
4740 Inspect entire pathname, not just new file name
4741 component, when deciding whether to exclude it.
4742
4743 * src/list.c (<fnmatch.h>): Do not include.
4744 (from_chars): Renamed from from_oct. New parameter specifying
4745 the negative of the minimum allowed value. Support negative
4746 and base-64 values.
4747 (base64_map): New var.
4748 (base64_init): New function.
4749 (print_header): Output numeric uids and gids if numeric_owner_option.
4750
4751 * src/misc.c (quote_copy_string): Use LG_8 instead of constants.
4752
4753 * src/names.c (_GNU_SOURCE): Define.
4754 (<fnmatch.h>): Include unconditionally.
4755 (excluded_name): New function, taking over duties of excluded_pathname.
4756 All uses changed.
4757
4758 * src/rmt.c (decode_oflag): New function.
4759 (main): Use it to support symbolic open flags.
4760
4761 * src/rtapelib.c (encode_oflag): New function.
4762 (rmt_open__): Do not allow newlines in the path.
4763 Propagate errno correctly.
4764 Decode symbolic open flags, if present.
4765
4766 * src/system.h (FILESYSTEM_PREFIX_LEN, ISSLASH, O_ACCMODE, O_NONBLOCK):
4767 New macros.
4768
4769 * src/tar.c: (long_options, usage, OPTION_STRING, decode_options):
4770 New -y or --bzip2 option.
4771 (add_filtered_exclude): New function.
4772 (decode_options): Put excluded patterns with / into
4773 excluded_with_slash, and without / into excluded_without_slash.
4774 Compare newer_mtime_option to its new initial value
4775 TYPE_MINIMUM (time_t) when deciding whether more than one
4776 threshold date was specified.
4777
4778 1999-07-20 Paul Eggert <eggert@twinsun.com>
4779
4780 * NEWS, configure.in: Version 1.13.5.
4781
4782 * src/common.h (FATAL_ERROR): Invoke apply_delayed_set_stat
4783 before exiting.
4784 * src/buffer.c (new_volume): Likewise.
4785 * src/incremen.c (read_directory_file): Likewise.
4786 * src/tar.c (decode_options):
4787 ERROR ((TAREXIT_FAILURE, ... -> FATAL_ERROR ((0,
4788 for consistency.
4789
4790 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.4.
4791 * configure.in (AC_CHECK_FUNCS): Add lstat, readlink, symlink.
4792
4793 * src/system.h (lstat): Define only if !HAVE_LSTAT && !defined lstat.
4794 (S_ISMPB, S_ISMPC, S_ISNWK): Remove unused macros.
4795 (S_ISBLK, S_ISCHR, S_ISCTG, S_ISFIFO, S_ISLNK, S_ISSOCK):
4796 Define to 0 if the corresponding S_IF* macro is not defined.
4797 (mkfifo): Do not define if already defined, or if S_IFIFO
4798 is not defined.
4799
4800 * src/compare.c (diff_archive): Use HAVE_READLINK, not
4801 S_ISLNK, to determine whether to invoke readlink.
4802 * src/create.c (dump_file): Likewise.
4803
4804 * src/extract.c (set_mode):
4805 Do not chmod unless we are root or the -p option was given;
4806 this matches historical practice.
4807 (unlink_destination): New function, which checks for unlink failures.
4808 (maybe_recoverable): Stay quiet if -U.
4809 (extract_archive): Use O_EXCL if unlink_first_option.
4810 Report unlink failures.
4811 Use HAVE_SYMLINK, not S_ISLNK, to determine whether symlink exists.
4812 Use HAVE_MKFIFO || defined mkfifo, not S_ISFIFO, to determine whether
4813 mkfifo exists.
4814
4815 * src/incremen.c (get_directory_contents): Depend on
4816 S_ISHIDDEN, not AIX, to determine whether to invoke S_ISHIDDEN.
4817
4818 * src/list.c: Remove S_IS* ifdefs.
4819 * src/misc.c (maybe_backup_file): Likewise.
4820
4821 * src/misc.c (maybe_backup_file):
4822 "Virtual memory exhausted" -> "Memory exhausted",
4823 to conform to the other places this message is issued.
4824
4825 * src/mangle.c (extract_mangle):
4826 Replace #ifdef S_ISLNK with #ifdef HAVE_SYMLINK.
4827
4828 * src/rtapelib.c (rmt_open__):
4829 Remove typo that caused us to omit the first char
4830 of the basename.
4831
4832 1999-07-16 Paul Eggert <eggert@twinsun.com>
4833
4834 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.13.3.
4835
4836 * doc/tar.texi: A path name is excluded if any of its file name
4837 components matches an excluded pattern, even if the path name was
4838 specified on the command line.
4839 * src/create.c (create_archive): Likewise.
4840 * src/list.c (read_and): Likewise.
4841 * src/update.c (update_archive): Likewise.
4842 * lib/exclude.h (excluded_pathname): New decl.
4843 * lib/exclude.c (_GNU_SOURCE): Define.
4844 (FILESYSTEM_PREFIX_LEN, ISSLASH): New macros.
4845 (excluded_filename_opts): New function.
4846 (excluded_pathname): New function.
4847
4848 * lib/Makefile.am (EXTRA_DIST):
4849 xstrtol.c moved here from libtar_a_SOURCES.
4850 (libtar_a_SOURCES): Move xstrtol.c to EXTRA_DIST.
4851 Remove xstrtoul.c; no longer needed.
4852 * lib/xstrtol.c: Remove.
4853
4854 * src/tar.c (decode_options):
4855 Set newer_time_option to TYPE_MINIMUM, so that
4856 negative timestamps are handled correctly.
4857 Replace invocations of xstrtol and xstrtoul with xstrtoumax, for
4858 uniformity (and so that we don't need to have the other fns).
4859 (main): Remove call to init_total_written; no longer needed.
4860
4861 * configure.in (AC_CHECK_SIZEOF): Remove no-longer-needed
4862 checks for unsigned long and long long.
4863 * src/arith.c: Remove.
4864 * src/Makefile.am (tar_SOURCES): Remove arith.c.
4865 * po/POTFILES.in: Remove src/arith.c.
4866 * src/arith.h: Use double, to simplify configuration gotchas.
4867 (tarlong): Now double.
4868 (TARLONG_FORMAT): New macro.
4869 (BITS_PER_BYTE, BITS_PER_TARLONG, SUPERDIGIT, BITS_PER_SUPERDIGIT,
4870 LONGS_PER_TARLONG, SIZEOF_TARLONG, struct tarlong,
4871 zerop_tarlong_helper, lessp_tarlong_helper, clear_tarlong_helper,
4872 add_to_tarlong_helper, mult_tarlong_helper, print_tarlong_helper,
4873 zerop_tarlong, lessp_tarlong, clear_tarlong, add_to_tarlong,
4874 mult_tarlong, print_tarlong): Remove. All callers replaced with
4875 arithmetic ops.
4876
4877 * src/common.h (init_total_written): Remove decl.
4878
4879 * src/buffer.c (total_written):
4880 Remove; replaced with prev_written + bytes_written.
4881 (prev_written): New var.
4882 (init_total_written): Remove.
4883 (print_total_written): Use TARLONG_FORMAT instead of print_tarlong.
4884
4885 * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG):
4886 Make sure that we can shift, multiply
4887 and divide unsigned long long values; Ultrix cc can't do it.
4888
4889 * lib/modechange.c (mode_compile): Use uintmax_t, not unsigned long.
4890 Check for any unknown bits, not just unknown bits left of the leftmost
4891 known bit.
4892
4893 * lib/quotearg.c (quotearg_buffer):
4894 Don't quote spaces if C quoting style.
4895 * src/list.c (from_oct):
4896 Use C quoting style for error; omit trailing NULs.
4897
4898 1999-07-14 Paul Eggert <eggert@twinsun.com>
4899
4900 * configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.2.
4901
4902 * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
4903 <inttypes.h> defines strtoumax as a macro (and not as a function).
4904 HP-UX 10.20 does this.
4905
4906 * src/tar.c (usage): tar-bugs@gnu.org -> bug-tar@gnu.org
4907 * PORTS, README, TODO, doc/tar.texi: Likewise.
4908
4909 1999-07-12 Paul Eggert <eggert@twinsun.com>
4910
4911 * configure.in (AM_INIT_AUTOMAKE): Version 1.13.1.
4912 (LIBOBJS): Add mktime.o to automake 1.4 bug workaround.
4913
4914 * src/list.c (decode_header):
4915 Do not assume that S_IFBLK and S_IFCHR are defined.
4916
4917 * src/create.c (start_header): Do not assume S_IFMT is defined.
4918 (dump_file): Remove unnecessary check for screwy apollo lossage.
4919 Do not assume S_IFBLK and S_IFCHR are defined.
4920
4921 * src/extract.c (extract_archive):
4922 Test whether S_IFCHR and S_IFBLK are nonzero,
4923 not whether they are defined, for consistency with other tests.
4924
4925 * src/buffer.c (is_regular_file):
4926 Don't succeed on files that we can't access due to
4927 permissions problems.
4928 (open_archive): Fix wording on fatal error message.
4929 Don't bother to stat /dev/null if the archive is not a character
4930 special device.
4931
4932 * src/compare.c (process_rawdata, diff_sparse_files, diff_archive):
4933 Report an error, not a warning, for I/O errors.
4934 (process_rawdata, process_dumpdir, diff_sparse_files):
4935 Change ungrammatical "Data differs" to "Contents differ".
4936 (get_stat_data): Find hidden files on AIX.
4937 Accept file name as argument; all uses changed.
4938 (get_stat_data, diff_archive): Use system error message for
4939 nonexistent files rather than rolling our own.
4940 (diff_archive): Unknown file types are errors, not warnings.
4941 Normalize spelling of message to "File type differs".
4942 Use get_stat_data to get link status, for consistency.
4943 Do not inspect st_rdev for fifos.
4944 Do not assume st_mode values contain only file types and mode bits.
4945 Check for mode changes and device number changes separately.
4946
4947 * src/update.c (append_file):
4948 Open the file before statting it, to avoid a race.
4949 Complain about file shrinkage only when we reach EOF.
4950
4951 1999-07-08 Paul Eggert <eggert@twinsun.com>
4952
4953 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13 released.
4954
4955 * configure.in (AC_EXEEXT): Add.
4956
4957 * lib/Makefile.am (noinst_HEADERS):
4958 Add basename.h, exclude.h. Remove full-write.h.
4959 (libtar_a_SOURCES): Add exclude.c.
4960
4961 * lib/basename.h, lib/exclude.c, lib/exclude.h, lib/safe-read.h:
4962 New files.
4963 * lib/full-write.c: Include safe-read.h instead of full-write.h.
4964 * lib/safe-read.h (safe_read): New decl.
4965 * src/rmt.c: Include safe-read.h.
4966 * src/rtapelib.c: Include basename.h, save-read.h.
4967 (rmt_open__): Use base_name to compute base name.
4968
4969 * src/common.h:
4970 Include basename.h, exclude.h; don't include full-write.h.
4971 (exclude_option): Remove decl.
4972 (excluded): New decl.
4973 (add_exclude, add_exclude_file, check_exclude): Remove decls.
4974
4975 * src/list.c (read_and):
4976 Use excluded_filename instead of check_exclude.
4977 Check base name of incoming file name, not entire file name, when
4978 deciding whether to exclude it.
4979
4980 * src/create.c (finish_sparse_file):
4981 Use excluded_filename instead of check_exclude.
4982 Don't bother to stat excluded file names.
4983 * src/incremen.c (get_directory_contents): Likewise.
4984
4985 * src/names.c (exclude_pool, exclude_pool_size,
4986 allocated_exclude_pool_size, simple_exclude_array,
4987 simple_excludes, allocated_simple_excludes,
4988 pattern_exclude_array, pattern_excludes,
4989 allocated_pattern_excludes, add_exclude, add_exclude_file,
4990 check_exclude):
4991 Remove; now done in ../lib/exclude.c.
4992
4993 * src/tar.c (decode_options): Initialize `excluded'.
4994 Use new add_exclude_file and add_exclude functions.
4995
4996 1999-07-05 Paul Eggert <eggert@twinsun.com>
4997
4998 * m4/gettext.m4: Use changequote rather than [[ ]].
4999
5000 * lib/safe-read.c: Renamed from lib/full-read.c.
5001 (safe_read): Renamed from full_read. All uses changed.
5002 * lib/safe-read.h, lib/full-write.h: New files.
5003 * lib/Makefile.am (noinst_HEADERS): Add full-write.h, safe-read.h.
5004 (libtar_a_SOURCES): Rename full-read.c to safe-read.c.
5005 * lib/full-write.c: Include full-write.h.
5006 * src/common.h: Include full-write.h, safe-read.h.
5007 * src/system.h: (full_read, full_write): Remove decls.
5008
5009 * src/Makefile.am (datadir): New var; needed for Solaris gettext.
5010
5011 * src/system.h (bindtextdomain, textdomain): undef before
5012 defining, to avoid preprocessor warnings with --disable-nls
5013 on hosts whose locale.h includes libintl.h.
5014
5015 * lib/xstrtol.c (__strtol): Remove decl; it doesn't work if __strtol
5016 expands to a macro, which occurs in HP-UX 10.20 with strtoumax.
5017 (strtol, strtoul): New decls (for pre-ANSI hosts), to replace
5018 the above decl.
5019
5020 1999-07-02 Paul Eggert <eggert@twinsun.com>
5021
5022 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/mktime.m4.
5023 * m4/mktime.m4: New file.
5024 * m4/Makefile.am.in, m4/README: Remove these files.
5025 * m4/Makefile.am (EXTRA_DIST): Add mktime.m4;
5026 remove README, Makefile.am.in.
5027 (Makefile.am): Remove rule; it didn't work in BSD/OS 4.0.
5028 * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Invoke AC_FUNC_MKTIME,
5029 not AM_FUNC_MKTIME.
5030
5031 * src/tar.c: Include signal.h.
5032 (SIGCHLD): Define to SIGCLD if SIGCLD is defined but SIGCHLD is not.
5033 (main): Ensure SIGCHLD is not ignored.
5034
5035 (BACKUP_OPTION, DELETE_OPTION, EXCLUDE_OPTION, GROUP_OPTION,
5036 MODE_OPTION, NEWER_MTIME_OPTION, NO_RECURSE_OPTION, NULL_OPTION,
5037 OWNER_OPTION, POSIX_OPTION, PRESERVE_OPTION, RECORD_SIZE_OPTION,
5038 RSH_COMMAND_OPTION, SUFFIX_OPTION, USE_COMPRESS_PROGRAM_OPTION,
5039 VOLNO_FILE_OPTION, OBSOLETE_ABSOLUTE_NAMES,
5040 OBSOLETE_BLOCK_COMPRESS, OBSOLETE_BLOCKING_FACTOR,
5041 OBSOLETE_BLOCK_NUMBER, OBSOLETE_READ_FULL_RECORDS, OBSOLETE_TOUCH,
5042 OBSOLETE_VERSION_CONTROL): Make sure they can't be valid chars, so
5043 they don't overlap with char codes. Use an enum instead of a lot
5044 of #defines.
5045
5046 * src/system.h (ISASCII): Remove.
5047 (CTYPE_DOMAIN, ISDIGIT, ISODIGIT, ISPRINT, ISSPACE, S_ISUID,
5048 S_ISGID, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP, S_IWGRP, S_IXGRP,
5049 S_IROTH, S_IWOTH, S_IXOTH, MODE_WXUSR, MODE_R, MODE_RW,
5050 MODE_RWX, MODE_ALL, SEEK_SET, SEEK_CUR, SEEK_END, CHAR_MAX,
5051 LONG_MAX): New macros.
5052
5053 * src/incremen.c (ISDIGIT, ISSPACE): Remove; now in system.h.
5054 (read_directory_file): Cast ISSPACE arg to unsigned char.
5055 * src/misc.c (ISPRINT): Remove; now in system.h.
5056 (remove_any_file): Add brackets to pacify gcc -Wall.
5057 * src/list.c: Don't include <ctype.h>; system.h already does this.
5058 (ISODIGIT, ISSPACE): Remove; now in system.h.
5059 (decode_header): No need to AND mode with 07777; MODE_FROM_OCT
5060 does this now.
5061 (from_oct): Cast ISSPACE arg to unsigned char.
5062
5063 * src/create.c (mode_to_oct): Translate modes from internal to
5064 external form.
5065 * src/list.c (mode_from_oct): Translate modes from external to
5066 internal form. Do not complain about unrecognized mode bits.
5067 * src/common.h (TSUID, TSGID, TSVTX, TUREAD, TUWRITE, TUEXEC,
5068 TGREAD, TGWRITE, TGEXEC, TOREAD, TOWRITE, TOEXEC): Remove undefs.
5069
5070 * src/extract.c: (extr_init, make_directories, extract_archive):
5071 Do not assume mode bits have traditional Unix values.
5072 * src/list.c (decode_mode): Likewise.
5073 * src/create.c (start_header, dump_file): Likewise.
5074 * src/buffer.c (child_open_for_compress,
5075 child_open_for_uncompress, open_archive, (close_archive): Likewise.
5076 * src/compare.c (diff_archive): Likewise.
5077
5078 * src/extract.c (set_mode): Use %04 not %0.4 format.
5079 (extract_sparse_file): Do not use data_block uninitialized.
5080 Check for lseek failures.
5081
5082 * src/rtapelib.c (rmt_lseek__):
5083 Convert lseek whence values to portable integers on the wire.
5084 * src/rmt.c (main): Likewise. Check for whence values out of range.
5085
5086 * src/create.c (finish_sparse_file): Use lseek whence macros
5087 instead of integers.
5088 * src/buffer.c (backspace_output): Likewise.
5089 * src/compare.c (diff_archive, verify_volume): Likewise.
5090 * src/delete.c (move_archive): Likewise.
5091 * src/extract.c (extract_sparse_file): Likewise.
5092
5093 * src/create.c (dump_file): Do not invoke finish_sparse_file
5094 on a negative file descriptor.
5095
5096 * src/buffer.c: Add braces to pacify gcc -Wall.
5097
5098 * src/compare.c (diff_sparse_files): Report lseek errors.
5099
5100 * configure.in (ALL_LINGUAS): Add cs, es, ru.
5101
5102 * PORTS, TODO: gnu.ai.mit.edu -> gnu.org
5103
5104 * src/arith.c, src/buffer.c (new_volume): Don't put ^G in
5105 message to be internationalized; \a doesn't work with msgfmt.
5106
5107 * src/tar.c (long_options, main, usage, OPTION_STRING):
5108 Remove -E or --ending-file.
5109 * src/list.c (read_and): Likewise.
5110 * src/common.h (ending_file_option): Likewise.
5111 * src/buffer.c (close_archive): Likewise.
5112
5113 * tests/after: Don't run two commands together in a pipeline,
5114 as some old shells mishandle pipeline exit status.
5115
5116 1999-06-28 Paul Eggert <eggert@twinsun.com>
5117
5118 * configure.in (AM_INIT_AUTOMAKE): version 1.12.64015.
5119 * NEWS: Describe changes since 1.12.
5120 * README: Update bug reporting address; move paxutils ref to NEWS.
5121
5122 Handle EINTR correctly.
5123 * lib/Makefile.am (libtar_a_SOURCES): Add full-read.c, full-write.c.
5124 * lib/full-read.c, lib/full-write.c: New files.
5125 * src/buffer.c (child_open_for_compress, child_open_for_uncompress):
5126 Prefer full_read to read and full_write to write.
5127 * src/compare.c (process_rawdata, diff_sparse_files): Likewise.
5128 * src/create.c (deal_with_sparse, finish_sparse_file, dump_file):
5129 Likewise.
5130 * src/extract.c (extract_sparse_file): Likewise.
5131 * src/rmt.c (get_string, main, report_error_message,
5132 report_numbered_error): Likewise.
5133 * src/rmt.h (rmtread, rmtwrite): Likewise.
5134 * src/rtapelib.c (do_command, get_status_string, rmt_read__,
5135 rmt_write__, rmt_ioctl__): Likewise.
5136 * src/update.c (append_file): Likewise.
5137 * src/system.h (full_read, full_write): New decls.
5138
5139 * po/POTFILES.in: Add lib/argmatch.c, lib/error.c lib/getopt.c,
5140 lib/xmalloc.c, src/arith.c, src/misc.c.
5141
5142 * src/system.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
5143 New macros. All uses of STDIN and STDOUT changed.
5144 * src/rmt.c (prepare_record_buffer, main): Use STDIN_FILENO
5145 instead of 0 and STDOUT_FILENO instead of 1.
5146 * src/rtapelib.c (_rmt_rexec): Use STDIN_FILENO and STDOUT_FILENO
5147 instead of fileno (stdin) and fileno (stdout) or 0 and 1.
5148
5149 * src/rmt.c (private_strerror): Avoid const. Translate results.
5150
5151 * tests/Makefile.am (TESTS): Remove incremen.sh; it doesn't work
5152 in the presence of NFS clock skew.
5153
5154 1999-06-25 Paul Eggert <eggert@twinsun.com>
5155
5156 * configure.in (AM_INIT_AUTOMAKE): version 1.12.64014.
5157
5158 * src/buffer.c (write_archive_buffer): New function.
5159 (child_open_for_compress, flush_write, flush_read): Use it to write
5160 buffers.
5161 (open_archive): Report error if fstat of archive fails.
5162 Improve efficiency of check for /dev/null.
5163 Also, fix some corner cases with remote archives and /dev/null checking.
5164 (close_archive): Test for input fifo only if not remote.
5165 Truncate output archive only if it's not remote.
5166
5167 * src/misc.c (remove_any_file):
5168 Don't terminate if you see . or ..; just skip them.
5169
5170 1999-06-18 Paul Eggert <eggert@twinsun.com>
5171
5172 * configure.in (AM_INIT_AUTOMAKE): version 1.12.64013.
5173
5174 Output sizes using a format that's more compatible with
5175 traditional tar (and with GNU Emacs).
5176 * src/common.h (GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT,
5177 MODE_TO_OCT, SIZE_TO_OCT, UID_TO_OCT, UINTMAX_TO_OCT):
5178 Don't subtract 1 from size.
5179 * src/create.c (to_oct): Prepend leading zeros, not spaces.
5180 Output a trailing NUL unless the value won't fit without it.
5181 (finish_header): No need to append NUL to chksum, now that
5182 to_oct is doing it.
5183
5184 1999-06-16 Paul Eggert <eggert@twinsun.com>
5185
5186 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64012.
5187
5188 * src/Makefile.am (LDADD): Link libtar.a after @INTLLIBS@, since
5189 @INTLLIBS@ might invoke rpl_realloc.
5190
5191 * src/tar.c (backup_type): Remove decl; backupfile.h now has it.
5192 (intconv): Remove; use xstrto* fns instead.
5193 ("xstrtol.h"): Include.
5194 (check_decimal): Remove.
5195 (long_options, usage, OPTION_STRING, decode_options):
5196 Remove -y, --bzip2, --unbzip2.
5197 (decode_options): Use xget_version instead of get_version.
5198 Check for overflow with -b and -L and RECORD_SIZE_OPTION.
5199 Replace invocations of check_decimal with xstrtoumax.
5200
5201 * tests/preset.in (echo_n, echo_c): Remove.
5202
5203 * tests/after: Don't rely on $echo_c and $echo_n.
5204
5205 * lib/addext.c, lib/dirname.c, lib/lchown.c, lib/lchown.h,
5206 lib/malloc.c, lib/mktime.c, lib/realloc.c, lib/strtol.c, lib/strtoul.c,
5207 lib/strtoull.c, lib/strtoumax.c, lib/utime.c, lib/xstrtol.c,
5208 lib/xstrtol.h, lib/xstrtoul.c, lib/xstrtoumax.c,
5209 m4/Makefile.am.in, m4/README, m4/ccstdc.m4, m4/d-ino.m4,
5210 m4/gettext.m4, m4/inttypes_h.m4, m4/isc-posix.m4,
5211 m4/jm-mktime.m4, m4/largefile.m4, m4/lcmessage.m4,
5212 m4/malloc.m4, m4/progtest.m4, m4/realloc.m4, m4/uintmax_t.m4,
5213 m4/ulonglong.m4, m4/utimbuf.m4, m4/utime.m4, m4/utimes.m4,
5214 m4/xstrtoumax.m4: New files.
5215
5216 * configure.in(fp_PROG_ECHO): Remove; no longer needed.
5217 (AC_SYS_LARGEFILE): Renamed from AC_LFS.
5218 (jm_AC_HEADER_INTTYPES_H): Replaces inline code.
5219 (jm_STRUCT_DIRENT_D_INO, jm_AC_TYPE_UINTMAX_T, jm_AC_PREREQ_XSTRTOUMAX): Add.
5220 (AC_CHECK_FUNCS): Remove lchown.
5221 (AC_REPLACE_FUNCS): Remove basename, dirname.
5222 Add lchown, strtol, strtoul.
5223 (jm_FUNC_MKTIME): Add.
5224 (LIBOBJS): Replace .o with $U.o, so that the .o files in LIBOBJS
5225 are also built via the ANSI2KNR-filtering rules.
5226 Use a no-op line to work around bug in automake 1.4 with malloc and
5227 realloc.
5228 (AC_OUTPUT): Add m4/Makefile.
5229
5230 * lib/Makefile.am (EXTRA_DIST):
5231 Add lchown.c, malloc.c, mktime.c, realloc.c,
5232 strtol.c, strtoul.c, strtoull.c, strtoumax.c, utime.c.
5233 (noinst_HEADERS): Add lchown.h, modechange.h, xstrtol.h.
5234 (libtar_a_SOURCES): Add addext.c, basename.c, xstrtol.c,
5235 xstrtoul.c, xstrtoumax.c. Remove getversion.c.
5236 ($(srcdir)/getdate.c:): Remove `expect conflicts' line.
5237
5238 * src/system.h (uintmax_t): Don't declare; configure now does this.
5239
5240 * src/common.h (backup_type): New decl.
5241 * src/common.h, src/misc.c, src/tar.c:
5242 Move include of backupfile.h to common.h.
5243
5244 * src/misc.c (maybe_backup_file):
5245 Pass backup_type to find_backup_file_name.
5246
5247 * src/list.c (print_header): Change sizes of uform and gform from 11 to
5248 UINTMAX_STRSIZE_BOUND.
5249
5250 * doc/tar.texi: Remove --bzip2.
5251 Fix @xref typos reported by latest makeinfo.
5252
5253 * Makefile.am (ACLOCAL_AMFLAGS): New macro.
5254 (SUBDIRS): Add m4.
5255 (M4DIR, ACINCLUDE_INPUTS): New macros.
5256 ($(srcdir)/acinclude.m4): New rule.
5257
5258 * acconfig.h (ENABLE_NLS, HAVE_CATGETS, HAVE_GETTEXT,
5259 HAVE_INTTYPES_H, HAVE_LC_MESSAGES, HAVE_STPCPY): Remve #undefs;
5260 now generated automatically by autoconf.
5261
5262 1999-05-15 Paul Eggert <eggert@twinsun.com>
5263
5264 * doc/tar.texi: Remove -y.
5265
5266 1999-04-09 Paul Eggert <eggert@twinsun.com>
5267
5268 * src/system.h (INT_STRLEN_BOUND): Fix off-by-factor-of-10 typo
5269 (we were allocating too much storage).
5270 (uintmax_t): Don't declare; configure now does this.
5271
5272 * ABOUT-NLS: Update to gettext 0.10.35 edition.
5273
5274 1999-03-22 Paul Eggert <eggert@twinsun.com>
5275
5276 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64010
5277
5278 * acinclude.m4 (AC_LFS_FLAGS):
5279 Don't use -mabi=n32 with GCC on IRIX 6.2; it's the default.
5280 (AC_LFS): -n32, -o32, and -n64 are CPPFLAGS, not CFLAGS.
5281 (jm_FUNC_MALLOC, jm_FUNC_REALLOC): New macros.
5282
5283 * configure.in (jm_FUNC_MALLOC, jm_FUNC_REALLOC):
5284 New macros; needed for latest GNU xmalloc.c.
5285
5286 * Makefile.am (noinst_HEADERS): Add quotearg.h, xalloc.h.
5287 (libtar_a_SOURCES): Add quotearg.c.
5288 * list.c: Include <quotearg.h>.
5289 (from_oct): Add forward decl.
5290 (read_header): Return HEADER_FAILURE if we can't parse the checksum.
5291 (from_oct): Report an error only if TYPE is nonzero.
5292 Quote any funny characters in bad header.
5293
5294 1999-03-20 Paul Eggert <eggert@twinsun.com>
5295
5296 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64009
5297
5298 * acinclude.m4 (AC_LFS_FLAGS): Add support for IRIX 6.2 and later.
5299 (AC_LFS_SPACE_APPEND): Assume $2 is quoted properly; all callers
5300 changed.
5301 (AC_LFS): Simplify AIX revision number test.
5302
5303 1999-03-17 Paul Eggert <eggert@twinsun.com>
5304
5305 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64008
5306
5307 * configure.in (AC_VALIDATE_CACHED_SYSTEM_TUPLE):
5308 Remove; it doesn't work that well
5309 with AC_CANONICAL_HOST.
5310 (fp_WITH_INCLUDED_MALLOC): Remove; we'll just use the system malloc.
5311
5312 * Makefile.am (EXTRA_DIST): Remove AC-PATCHES, AM-PATCHES, BI-PATCHES.
5313
5314 * Makefile.am (EXTRA_DIST): Remove gmalloc.c.
5315
5316 * acinclude.m4 (fp_WITH_INCLUDED_MALLOC): Remove.
5317
5318 * tar.texi: Fix bug-report addr.
5319
5320 * README: Remove --with-included-malloc.
5321 Upgrade version numbers of build software.
5322
5323 1999-03-07 Paul Eggert <eggert@twinsun.com>
5324
5325 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64007.
5326
5327 * acinclude.m4 (AM_WITH_NLS): Port to Solaris 2.5.1,
5328 where bindtextdomain and gettext require -lintl.
5329 (AC_LFS_FLAGS): Simplify so that it only gets the flags;
5330 `no' means it failed.
5331 (AC_LFS_SPACE_APPEND, AC_LFS_MACRO_VALUE): New macros.
5332 (AC_LFS): Use them. Set _FILE_OFFSET_BITS, _LARGEFILE_SOURCE, and
5333 _LARGE_FILES from LFS_CFLAGS, so that in the normal case we don't need
5334 to add anything to the command line (it's all in config.h).
5335 Put any extra -D and -I options into CPPFLAGS, the rest into CFLAGS.
5336
5337 1999-03-01 Paul Eggert <eggert@twinsun.com>
5338
5339 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64006.
5340
5341 * acinclude.m4 (AC_LFS_FLAGS): Port to AIX 4.2.
5342
5343 * src/list.c: (gid_from_oct, major_from_oct, minor_from_oct,
5344 mode_from_oct, off_from_oct, size_from_oct, time_from_oct,
5345 uid_from_oct, uintmax_from_oct): Use TYPE_MAXIMUM instead of macros
5346 like OFF_MAX, which are not reliable
5347 (e.g. OFF_MAX in AIX 4.2 is incorrect).
5348 * src/system.h (GID_MAX, MAJOR_MAX, MINOR_MAX, MODE_MAX, OFF_MAX,
5349 SIZE_MAX, TIME_MAX,UID_MAX, UINTMAX_MAX): Remove; no longer used.
5350
5351 * src/incremen.c (get_directory_contents):
5352 Don't use statx if _LARGE_FILES; it doesn't work under AIX 4.2.
5353 Have statx depend on STX_HIDDEN, not AIX.
5354
5355 * src/create.c (to_oct):
5356 New parameter substitute, giving a substitute value to use
5357 when the original value is out of range. Do not append a space to the
5358 output; modern tars don't. When a value is out of range, specify the
5359 maximum value, not the number of bits.
5360 (GID_NOBODY, UID_NOBODY): New macros.
5361 (gid_to_oct, uid_to_oct): Use them as substitutes.
5362 (finish_header): Do not assume that UINTMAX_TO_OCT appends a space.
5363 (dump_file): Check whether the file changed as we read it.
5364
5365 * src/rmt.c (main): Remove suspicious AIX/386 code.
5366
5367 1999-02-19 Paul Eggert <eggert@twinsun.com>
5368
5369 * intl/localealias.c (read_alias_file): Don't assume that memcpy
5370 returns a type compatible with char *; it doesn't on SunOS
5371 4.1.4 with Sun cc, since <string.h> doesn't declare memcpy.
5372
5373 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64005.
5374
5375 * src/tar.c (long_options, usage): Prefer --unbzip2 to --bunzip2.
5376 * doc/tar.texi: Add --bzip2, --unbzip2 options.
5377
5378 * configure.in (AC_CANONICAL_HOST, AC_VALIDATE_CACHED_SYSTEM_TUPLE):
5379 Add.
5380 (AC_LINK_FILES): Omit; AM_GNU_GETTEXT now does this.
5381 (AC_OUTPUT): Omit munging of po/Makefile; AM_GNU_GETTEXT now does this.
5382 * acinclude.m4 (AM_WITH_NLS):
5383 Update to latest gettext version (serial 5).
5384 (AC_LFS_FLAGS): New macro
5385 (AC_LFS): Use it. Append to CFLAGS, LDFLAGS, LDLIBS instead of
5386 working only with unset variables. Append to CFLAGS, not CPPFLAGS.
5387 Work properly in cross-compilation scenario, by checking for getconf
5388 with AC_CHECK_TOOL and by ditching uname in favor of
5389 AC_CANONICAL_HOST and $host_os. Add --disable-lfs option.
5390
5391 * lib/getdate.y: Update to fileutils 4.0 getdate.y, with one patch:
5392 replace FORCE_ALLOCA_H with HAVE_ALLOCA_H.
5393 * lib/Makefile.am (AUTOMAKE_OPTIONS): Append ../src/ansi2knr,
5394 since getdate.y now uses ANSI code.
5395
5396 * config.guess, config.sub: New files; taken from automake 1.4.
5397
5398 * intl/Makefile.in, intl/VERSION, intl/bindtextdom.c,
5399 intl/cat-compat.c, intl/dcgettext.c, intl/dgettext.c,
5400 intl/explodename.c, intl/finddomain.c, intl/gettext.c,
5401 intl/gettext.h, intl/gettextP.h, intl/hash-string.h,
5402 intl/l10nflist.c, intl/libgettext.h, intl/loadinfo.h,
5403 intl/loadmsgcat.c, intl/localealias.c, intl/textdomain.c:
5404 Update to GNU gettext 0.10.35, with patches as per GCC snapshot 990109.
5405
5406 1999-02-01 Paul Eggert <eggert@twinsun.com>
5407
5408 * src/tar.c: Update copyright.
5409
5410 * NEWS: 1.12.64004
5411
5412 1999-02-01 Paul Eggert <eggert@twinsun.com>
5413
5414 * NEWS, configure.in: Version 1.12.64004
5415
5416 * configure.in (AC_LFS): Use this macro, instead of open-coding it.
5417
5418 * acinclude.m4 (AC_LFS, AM_PROG_CC_STDC): New macros.
5419
5420 * src/extract.c (extract_archive): Fix bug when extracting sparse
5421 files: they were trashing the tar file header.
5422
5423 * src/tar.c: (long_options, usage, OPTION_STRING, decode_options):
5424 Add -y or --bzip2 or --bunzip2 option.
5425
5426 1999-01-30 Paul Eggert <eggert@twinsun.com>
5427
5428 * src/names.c (cached_no_such_uname, cached_no_such_gname,
5429 cached_no_such_uid, cached_no_such_gid): New vars.
5430 (uid_to_uname, gid_to_gname, uname_to_uid, gname_to_gid):
5431 Cache failures, too.
5432
5433 * src/tar.c (decode_options):
5434 Don't pass names longer than UNAME_FIELD_SIZE to
5435 uname_to_uid, as it messes up the cache. Similarly for gname_to_uid.
5436
5437 1999-01-27 Paul Eggert <eggert@twinsun.com>
5438
5439 * NEWS, configure.in: Version 1.12.64003
5440
5441 * src/buffer.c (backspace_output, close_archive): Cast
5442 rmtlseek position arg to off_t, for benefit of K&R compilers
5443 with long long.
5444 * src/compare.c (verify_volume): Likewise.
5445
5446 * NEWS, configure.in: Version 1.12.64002
5447
5448 * src/create.c (gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct,
5449 off_to_oct, size_to_oct, time_to_oct, uid_to_oct):
5450 Cast arg to uintmax_t for benefit of pre-ANSI compilers with long long.
5451 * src/list.c: (gid_from_oct, major_from_oct, minor_from_oct,
5452 mode_from_oct, off_from_oct, size_from_oct, time_from_oct,
5453 uid_from_oct): Likewise.
5454
5455 1999-01-25 Paul Eggert <eggert@twinsun.com>
5456
5457 * incremen.sh: Fix timing bug in regression test.
5458
5459 1999-01-22 Paul Eggert <eggert@twinsun.com>
5460
5461 * NEWS, configure.in: Update version
5462
5463 * Makefile.am (localedir): Change to $(datadir)/locale.
5464 (DEFS): New macro, defining LOCALEDIR.
5465 (tar.o, tar._o, rmt.o, rmt._o): Remove.
5466 (INCLUDES): Add -I..
5467
5468 * Makefile.am (localedir): Change to $(datadir)/locale.
5469
5470 1999-01-21 Paul Eggert <eggert@twinsun.com>
5471
5472 * NEWS, README, configure.in: Unofficial version 1.12.64001.
5473
5474 * tests/Makefile.am (localedir): Change to $(datadir)/locale.
5475 * src/Makefile.am (localedir): Likewise.
5476 (DEFS): New macro, defining LOCALEDIR.
5477 (tar.o, tar._o, rmt.o, rmt._o): Remove.
5478 (INCLUDES): Add `-I..'.
5479
5480 * tests/incremen.sh: Fix timing bug.
5481
5482 1999-01-20 Paul Eggert <eggert@twinsun.com>
5483
5484 * NEWS, README, configure.in: Unofficial version 1.12.64000.
5485 `lfs.7' changed to `64000' in version number
5486 to conform to gnits standards.
5487
5488 * COPYING, INSTALL, doc/texinfo.tex, install-sh, missing,
5489 mkinstalldirs, ansi2knr.c: Update to latest public versions.
5490
5491 Rebuild with automake 1.4 and autoconf 2.13, to work around some
5492 porting problems.
5493
5494 1998-12-07 Paul Eggert <eggert@twinsun.com>
5495
5496 * NEWS, README, configure.in: Unofficial version 1.12.lfs.6.
5497
5498 * src/list.c (read_header):
5499 Accept file names as specified by POSIX.1-1996 section 10.1.1.
5500
5501 1998-11-30 Paul Eggert <eggert@twinsun.com>
5502
5503 * configure.in: Quote the output of uname.
5504
5505 * src/extract.c (set_stat): chmod after chown even when not root;
5506 if we are using --same-owner this is needed e.g. on Solaris 2.5.1.
5507
5508 1998-11-15 Paul Eggert <eggert@twinsun.com>
5509
5510 * NEWS, README, configure.in: Unofficial version 1.12.lfs.5.
5511
5512 * configure.in (ac_test_CPPFLAGS, ac_test_LDFLAGS, ac_test_LIBS,
5513 ac_getconfs, ac_result): Special case for HP-UX 10.20 or later.
5514
5515 1998-10-28 Paul Eggert <eggert@twinsun.com>
5516
5517 * NEWS, README, configure.in: Unofficial version 1.12.lfs.4.
5518
5519 * src/system.h (voidstar): Use void * if __STDC__ is defined,
5520 not merely nonzero.
5521
5522 * src/rtapelib.c: Don't use rexec code unless compiled with WITH_REXEC.
5523 On many installations, rexec is disabled.
5524
5525 1998-08-07 Paul Eggert <eggert@twinsun.com>
5526
5527 * NEWS, README, configure.in: Unofficial version 1.12.lfs.3.
5528
5529 * src/names.c (uid_to_uname, gid_to_gname): Don't used cached name
5530 for nameless users and groups.
5531
5532 1998-02-17 Paul Eggert <eggert@twinsun.com>
5533
5534 * NEWS, README, configure.in: Unofficial version 1.12.lfs.2.
5535 * NEWS, README: Add explanation of why this isn't an official version.
5536
5537 1998-02-02 Paul Eggert <eggert@twinsun.com>
5538
5539 * NEWS, README, configure.in: Unofficial version 1.12.lfs.1.
5540 This is an unofficial version.
5541
5542 1997-12-17 Paul Eggert <eggert@twinsun.com>
5543
5544 * src/incremen.c (ST_DEV_MSB): New macro.
5545 (NFS_FILE_STAT): Use most significant bit of st_dev,
5546 even if it's unsigned.
5547
5548 1997-12-08 Paul Eggert <eggert@twinsun.com>
5549
5550 * src/system.h (ST_NBLOCKS): Fix typo in definition.
5551
5552 1997-11-19 Paul Eggert <eggert@twinsun.com>
5553
5554 * configure.in (HAVE_INTTYPES_H):
5555 Don't ignore cache variable if it's already set.
5556
5557 1997-11-10 Paul Eggert <eggert@twinsun.com>
5558
5559 * src/rmt.c (main): Don't assume mt_count is of type daddr_t.
5560 * src/delete.c (records_read): Now off_t.
5561 (move_archive): Don't assume mt_count is of type daddr_t.
5562
5563 1997-10-30 Paul Eggert <eggert@twinsun.com>
5564
5565 * configure.in (CPPFLAGS, LDFLAGS, LIBS):
5566 Set to appropriate values if large file support
5567 needs explicit enabling.
5568 (HAVE_INTTYPES_H, HAVE_ST_FSTYPE_STRING, daddr_t, major_t, minor_t,
5569 ssize_t):
5570 New macros to configure.
5571 (AC_TYPE_MODE_T, AC_TYPE_PID_T, AC_TYPE_OFF_T): Add.
5572
5573 * acconfig.h (daddr_t, HAVE_INTTYPES_H, HAVE_ST_FSTYPE_STRING,
5574 major_t, minor_t, ssize_t): New macros.
5575
5576 * src/arith.h (TARLONG_FORMAT):
5577 Fix typo: %uld -> %lu. Use unsigned when long long
5578 (%lld -> %llu).
5579 (add_to_tarlong_helper, mult_tarlong_helper): 2nd arg is now unsigned long.
5580 (add_to_tarlong, mult_tarlong): Cast 2nd arg to unsigned long.
5581
5582 * src/arith.c (add_to_tarlong_helper, mult_tarlong_helper):
5583 2nd arg is now unsigned long.
5584
5585 * src/rmt.c (allocated_size): Now size_t, and now initialized to 0.
5586 (prepare_record_buffer): Arg is now size_t.
5587 Remove now-useless casts.
5588
5589 (main): Use `long' for status, so that it can store ssize_t.
5590 Use daddr_t, mode_t, size_t, off_t when appropriate.
5591 Convert daddr_t and off_t values ourselves, since they might be longer
5592 than long. Convert other types using `long' primitives.
5593 When processing MTIOCTOP, do not try to pass resulting
5594 count back, since it won't work (it could be too large) and it's
5595 not expected anyway.
5596
5597 * src/update.c:
5598 (append_file) Use off_t, size_t, ssize_t when appropriate. Remove
5599 now-useless casts. Use unsigned long to print *_t types, except use
5600 STRINGIFY_BIGINT for off_t.
5601 (update_archive): Cast -1 to dev_t when necessary.
5602
5603 * src/tar.c (check_decimal):
5604 Now returns 1 if successful, 0 otherwise, and returns
5605 uintmax_t value into new arg. Check for arithmetic overflow.
5606 (decode_options): Avoid overflow if record_size fits in size_t but not int.
5607 Check for overflow on user or group ids.
5608
5609 * src/compare.c (diff_init, process_rawdata, read_and_process,
5610 diff_sparse_files, diff_archive):
5611 Use off_t, pid_t, size_t, ssize_t when appropriate.
5612 Remove now-useless casts. Use unsigned long to print *_t types,
5613 except use STRINGIFY_BIGINT for off_t.
5614
5615 (process_noop, process_rawdata, process_dumpdir, read_and_process):
5616 Size arg is now size_t.
5617
5618 (diff_sparse_files): Arg is now off_t. Check for size_t overflow
5619 when allocating buffer.
5620
5621 * src/rtapelib.c:
5622 (do_command, rmt_open__, rmt_read__, rmt_lseek__, rmt_ioctl__):
5623 Use pid_t, size_t, ssize_t when appropriate. Remove now-useless casts.
5624 Use unsigned long to print *_t types, except use STRINGIFY_BIGINT for
5625 off_t.
5626
5627 (get_status_string, get_status_off): New function.
5628 (get_status): Now returns long, so that it can store ssize_t.
5629 Invoke get_status_string to do the real work.
5630 (rmt_read__, rmt_write__): Now returns ssize_t. Size arg is now size_t.
5631 (rmt_lseek__): Now returns off_t, using new get_status_off function.
5632 (rmt_ioctl__): Convert mt_count by hand,
5633 since it might be longer than long.
5634
5635 * src/mangle.c (extract_mangle):
5636 Check for overflow when converting off_t to size_t.
5637 Use off_t, size_t when appropriate. Remove now-useless casts.
5638
5639 * src/system.h (mode_t): Remove; now done by autoconf.
5640 (ST_NBLOCKS): Do not overflow if st_size is near maximum.
5641 Return number of ST_NBLOCKSIZE-byte blocks,
5642 not number of 512-byte blocks;
5643 this also helps to avoid overflow.
5644 (st_blocks): Declare if needed.
5645 (ST_NBLOCKSIZE): New macro.
5646 (<limits.h>, <inttypes.h>): Include if available.
5647 (CHAR_BIT): New macro.
5648 (uintmax_t): New typedef.
5649 (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_STRLEN_BOUND,
5650 UINTMAX_STRSIZE_BOUND, GID_MAX, MAJOR_MAX, MINOR_MAX, MODE_MAX,
5651 OFF_MAX, SIZE_MAX, TIME_MAX, UID_MAX, UINTMAX_MAX): New macros.
5652
5653 * src/names.c (name_init):
5654 Fix typo in error message: FILE* was passed, but char*
5655 was wanted.
5656
5657 (read_name_from_file, name_gather, addname, name_match, name_scan,
5658 add_exclude): Use size_t when appropriate. Remove now-useless casts.
5659
5660 (exclude_pool_size, allocated_exclude_pool_size): Now size_t.
5661
5662 * src/extract.c (newdir_umask, current_umask): Now mode_t.
5663 (extract_sparse_file): Args now use off_t.
5664
5665 (set_mode, set_stat, make_directories, extract_sparse_file,
5666 extract_archive): Use off_t, size_t, ssize_t when appropriate. Remove
5667 now-useless casts. Use unsigned long to print *_t types, except use
5668 STRINGIFY_BIGINT for off_t.
5669
5670 * src/misc.c (quote_copy_string):
5671 Use size_t when appropriate. Remove now-useless casts.
5672
5673 * src/list.c (read_and, list_archive, read_header, decode_mode,
5674 print_header, print_for_mkdir):
5675 Use mode_t, off_t, size_t when appropriate. Remove
5676 now-useless casts. Use unsigned long to print *_t types, except use
5677 STRINGIFY_BIGINT for off_t.
5678
5679 (read_header): Check for overflow when converting header size.
5680
5681 (from_oct): Now static. Now returns uintmax_t. `where' arg is now
5682 const char *. Size arg is now size_t. Now takes new type and maxval
5683 args. Compute result using uintmax_t, not long. Report error if
5684 field does not contain octal number in range.
5685 (gid_from_oct, major_from_oct, minor_from_oct, mode_from_oct,
5686 off_from_oct, size_from_oct, time_from_oct, uid_from_oct,
5687 uintmax_from_oct): New functions.
5688
5689 (stringify_uintmax_t_backwards): New function.
5690
5691 (decode_mode, print_for_mkdir): Mode arg is now mode_t.
5692 (skip_file): Offset arg is now off_t.
5693
5694 * src/buffer.c (record_start_block, save_totsize, save_sizeleft,
5695 real_s_totsize, real_s_sizeleft, current_block_ordinal):
5696 Now off_t.
5697 (write_error): Arg is now ssize_t.
5698 (child_pid): Now pid_t.
5699 (available_space_after): Now size_t.
5700
5701 (child_open_for_compress, child_open_for_uncompress, flush_write,
5702 open_archive, flush_write, write_error, flush_read, close_archive):
5703 Use pid_t, ssize_t, size_t when appropriate. Remove now-useless
5704 casts. Use unsigned long to print *_t types, except use
5705 STRINGIFY_BIGINT for off_t.
5706
5707 * src/delete.c (records_read): Now daddr_t.
5708 (move_archive): Arg is now daddr_t. Check for overflow when
5709 computing offset.
5710 (move_archive, delete_archive_members): Use daddr_t, off_t when
5711 appropriate. Remove now-useless casts.
5712
5713 * src/rmt.h (rmt_read__, rmt_write__): Now returns ssize_t.
5714 (rmt_lseek): Now returns off_t.
5715
5716 * src/create.c (to_oct):
5717 Now static. Value arg is now uintmax_t. Accept new args
5718 giving name of type of octal field, for error messages. Report an
5719 error if the value is too large to fit in the field.
5720 (gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct, off_to_oct,
5721 size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct): New functions.
5722
5723 (write_eot, write_long, finish_header, deal_with_sparse,
5724 finish_sparse_file, dump_file): Use dev_t, off_t, ssize_t, size_t when
5725 appropriate. Remove now-useless casts. Use unsigned long to print
5726 *_t types, except use STRINGIFY_BIGINT for off_t.
5727
5728 (find_new_file_size): 1st arg is now off_t*.
5729 (finish_sparse_file): Args now use off_t, not long.
5730 Check for lseek error.
5731 (create_archive, dump_file): Cast -1 to dev_t when necessary.
5732 (dump_file): Device arg is now dev_t.
5733 Avoid overflow when testing whether file has holes
5734 by using the new ST_NBLOCKSIZE macro.
5735
5736 * src/incremen.c (struct accumulator, add_to_accumulator,
5737 get_directory_contents, add_hierarchy_to_namelist, gnu_restore):
5738 Use size_t for sizes.
5739 (struct directory, get_directory_contents, add_hierarchy_to_namelist):
5740 Use dev_t, ino_t for devices and inodes.
5741 (gnu_restore): Use off_t for file offsets.
5742 (struct directory): Use char for flags. Add new flag `nfs'.
5743 (nfs): New constant
5744 (NFS_FILE_STAT): New macro.
5745 (note_directory): Accept struct stat * instead of
5746 device and inode number. All callers changed.
5747 (note_directory, get_directory_contents):
5748 Use NFS_FILE_STAT to determine whether directory is an NFS directory.
5749 (write_dir_file): Cast time_t to unsigned long before printing as %lu.
5750
5751 * src/common.h (record_size, struct name, struct sp_array,
5752 available_space_after):
5753 Use size_t for sizes.
5754 (save_sizeleft, save_totsize, current_block_ordinal, skip_file):
5755 Use off_t for file offsets.
5756 (struct name): dir_contents is now const char *, not char *.
5757 (dump_file, get_directory_contents): Use dev_t for devices.
5758 (to_oct): Remove decl.
5759 (GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT, MODE_TO_OCT, SIZE_TO_OCT,
5760 UID_TO_OCT, UINTMAX_TO_OCT, OFF_TO_OCT, TIME_TO_OCT, STRINGIFY_BIGINT,
5761 GID_FROM_OCT, MAJOR_FROM_OCT, MINOR_FROM_OCT, MODE_FROM_OCT,
5762 OFF_FROM_OCT, SIZE_FROM_OCT, TIME_FROM_OCT, UID_FROM_OCT,
5763 UINTMAX_FROM_OCT): New macros.
5764 (gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct, off_to_oct,
5765 size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct,
5766 stringify_uintmax_t_backwards, gid_from_oct, major_from_oct,
5767 minor_from_oct, mode_from_oct, off_from_oct, size_from_oct,
5768 time_from_oct, uid_from_oct, uintmax_from_oct): New decls.
5769 (print_for_mkdir): 2nd arg is now mode_t.
5770
5771 See ChangeLog.1 for earlier changes.
5772
5773
5774 \f
5775 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2003, 2004 Free Software
5776 Foundation, Inc.
5777
5778 This file is part of GNU tar.
5779
5780 GNU tar is free software; you can redistribute it and/or modify
5781 it under the terms of the GNU General Public License as published by
5782 the Free Software Foundation; either version 2, or (at your option)
5783 any later version.
5784
5785 GNU tar is distributed in the hope that it will be useful,
5786 but WITHOUT ANY WARRANTY; without even the implied warranty of
5787 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
5788 GNU General Public License for more details.
5789
5790 You should have received a copy of the GNU General Public License
5791 along with GNU tar; see the file COPYING. If not, write to
5792 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
5793 Boston, MA 02111-1307, USA.
5794 \f
5795 Local Variables:
5796 mode: change-log
5797 version-control: never
5798 End:
This page took 0.311936 seconds and 4 git commands to generate.