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