]> Dogcows Code - chaz/tar/blob - ChangeLog
Updated
[chaz/tar] / ChangeLog
1 2003-09-02 Paul Eggert <eggert@twinsun.com>
2
3 * src/common.h (destroy_stat, xheader_decode, xheader_store,
4 xheader_read, xheader_finish, xheader_destroy): Add decls;
5 C99 requires this.
6
7 * src/create.c (write_extended): Remove unused local 'bufsize'.
8
9 * src/delete.c (delete_archive_members): Handle case of
10 HEADER_SUCCESS_EXTENDED followed by HEADER_FAILURE.
11 * src/list.c (read_and): Abort if HEADER_SUCCESS_EXTENDED
12 occurs, as it's not possible.
13 * src/update.c (update_archive): Likewise.
14
15 Use "const" when possible in new code.
16 * src/tar.c (struct fmttab.name): Now char const *. All uses changed.
17 (fmttab): Now const. All uses changed.
18 * src/xheader.c (struct xhdr_tab.keyword): Now pointer to const.
19 (struct xhdr_tab.coder, struct xhdr_tab.decoder, locate_handler,
20 decode_record, xheader_store, xheader_print, code_string, code_time,
21 code_num, dummy_coder, dummy_decoder, atime_coder, atime_decoder,
22 gid_coder, gid_decoder, gname_coder, gname_decoder, linkpath_coder,
23 linkpath_decoder, ctime_coder, ctime_decoder, mtime_coder,
24 mtime_decoder, path_coder, path_decoder, size_coder, size_decoder,
25 uid_coder, uid_decoder, uname_coder, uname_decoder):
26 Use pointers to const when possible.
27 (xhdr_tab): Now const.
28
29 * src/tar.c (fmttab): Avoid GCC warning by not eliding initializers.
30 (set_archive_format): Report an error if no format name matches,
31 instead of returning an undefined value.
32
33 * src/xheader.c (struct xhdr_tab.decoder, dummy_decoder,
34 atime_decoder, gid_decoder, gname_decoder, linkpath_decoder,
35 ctime_decoder, mtime_decoder, path_decoder, size_decoder,
36 uid_decoder, uname_decoder): Remove unused keyword arg.
37 All uses changed.
38
39 * src/tar.c (set_archive_format): Now static.
40 * src/xheader.c (xhdr_tab, format_uintmax): Now static.
41
42 * src/xheader.c (dummy_coder, dummy_decoder, atime_coder,
43 atime_decoder, gid_coder, gid_decoder, gname_coder, gname_decoder,
44 linkpath_coder, linkpath_decoder, mtime_coder, mtime_decoder,
45 ctime_coder, ctime_decoder, path_coder, path_decoder, size_coder,
46 size_decoder, uid_coder, uid_decoder, uname_coder, uname_decoder):
47 Remove forward decls; no longer needed.
48 (xhdr_tab): Move to end, so that the forward decls aren't needed.
49 Add a forward declaration.
50
51 Use 'bool' in new code, when appropriate.
52 * src/xheader.c (decode_record): Return bool, not int.
53 * src/common.h (read_header): Since it accepts bool, change
54 all callers to use false and true rather than 0 and 1.
55
56 * src/xheader.c (decode_record): Fix misspelling in diagnostic
57 "extended headed" -> "extended header".
58
59 GNU coding style fixes.
60 * src/xheader.c (decode_record, xheader_decode):
61 Do not use decls like "char *p, *q;".
62
63 Minor style fixes.
64 (xheader_store): Avoid parentheses around object operand of sizeof.
65
66 2003-09-03 Sergey Poznyakoff <gray@Mirddin.farlep.net>
67
68 * src/create.c (start_header): Store long file names
69 in "path" keyword of an extended header if in POSIX
70 mode.
71 (finish_header): print header before calling write_extended().
72 * src/list.c (list_archive): Always decode the header. This
73 is necessary so the extended header is processed and the correct
74 filename is printed no matter what the state of verbose_option.
75 * src/xheader.c (xhdr_tab): Reserved GNU keywords (commented out
76 for the time being).
77
78 2003-09-01 Paul Eggert <eggert@twinsun.com>
79
80 Update from gnulib, and correct fnmatch to fnmatch-gnu.
81 * bootstrap (gnulib_modules): Change fnmatch to fnmatch-gnu.
82 Sort.
83 * configure.ac (gl_USE_SYSTEM_EXTENSIONS): Use this instead
84 of AC_GNU_SOURCE.
85 * lib/.cvsignore: Add alloca.h, stdbool.h. Sort. Append newline.
86 * lib/Makefile.am (lib_OBJECTS): New macro, for convenience when
87 copying rules from gnulib module descriptions.
88 (BUILT_SOURCES, EXTRA_DIST, all-local, alloca.h):
89 Update from gnulib modules alloca, fnmatch, getline, stdbool.
90 * m4/.cvsignore: Add utimes-null.m4. Sort.
91
92 2003-09-01 Sergey Poznyakoff
93
94 Added initial support for creating POSIX headers.
95
96 * src/common.h (MAXOCTAL11,MAXOCTAL7): New defines
97 (string_to_chars): New functions
98 (struct xheader): Changed structure
99 (gid_to_gname,gname_to_gid,uid_to_uname,uname_to_uid): Changed
100 prototypes.
101 * src/create.c (string_to_chars): New function.
102 (write_extended): New function
103 (start_header): Create extended POSIX headers if necessary.
104 (finish_header): Likewise.
105 * src/list.c (print_header): Take user/group from
106 current_stat_info.
107 * src/names.c (gid_to_gname,gname_to_gid)
108 (uid_to_uname,uname_to_uid): Changed prototypes.
109 * src/tar.c: New option --format.
110 * src/tar.h (OLDGNU_COMPATIBILITY): Removed
111 (struct extra_header): Removed unused structure.
112 (union block.extra_header): Removed unused member.
113 * src/xheader.c: Implemented coder functions.
114 * bootstrap: Added obstack.
115 * lib/.cvsignore: Likewise.
116 * configure.ac: Added 'gl_OBSTACK'
117 * m4/Makefile.am: Added new files.
118 * m4/.cvsignore: Likewise.
119 * TODO: Minor formatting change
120
121 2003-08-31 Sergey Poznyakoff
122
123 Added initial support for POSIX extended and STAR headers
124 (only for listing/extracting).
125
126 * src/xheader.c: New file.
127 * src/Makefile.am: Added xheader.c
128 * src/tar.h (struct star_header): New datatype
129 (XHDTYPE,XGLTYPE): New defines
130 (enum archive_format:STAR_FORMAT): New member
131 (struct tar_stat_info): New datatype.
132 (union block.star_header): New member.
133 * src/common.h (orig_file_name,current_file_name)
134 (current_trailing_slash,current_link_name): Removed variables.
135 (current_stat_info): New variable
136 (current_stat): Removed
137 (extended_header): New variable
138 (decode_header): Changed prototype.
139 * src/list.c (decode_header): Added initial support for POSIX extended
140 and STAR headers.
141 (skip_member): Check oldgnu_header only if current_format is set
142 to OLDGNU_FORMAT.
143 * src/buffer.c: Use current_stat_info
144 * src/compare.c: Likewise.
145 * src/create.c: Likewise.
146 * src/delete.c: Likewise.
147 * src/incremen.c: Likewise.
148 * src/mangle.c: Likewise.
149 * src/update.c: Likewise.
150 * src/extract.c: Likewise.
151 (make_directories): Improved check for the existence of the directory
152 * src/tar.c (destroy_stat): New function.
153
154 2003-08-29 Paul Eggert <eggert@twinsun.com>
155
156 * NEWS, bootstrap: Drop en_GB locale; it was more trouble than it
157 was worth (e.g., different users in en_GB disagree about -ize
158 versus -ise).
159 * po/en_GB.po: Remove.
160
161 2003-07-28 Sergey Poznyakoff <gray@Mirddin.farlep.net>
162
163 * TODO: Updated
164 * NEWS: Updated
165 * src/tar.c: Removed support for the obsolete command line
166 options.
167 * doc/tar.texi: Removed references to the obsolete command
168 line options.
169
170 2003-07-27 Sergey Poznyakoff <gray@Mirddin.farlep.net>
171
172 * TODO: Updated
173 * NEWS: Updated
174 * doc/tar.texi: Updated
175 * src/common.h (check_links_option): New variable
176 (orig_file_name): New variable
177 (check_links): New proto.
178 * src/create.c (struct link.nlink): New member
179 (link_table): Static for the module.
180 (dump_file): Update `link' member when adding new links
181 to the link_table.
182 (check_links): New function.
183 * src/list.c (print_header): Use orig_file_name.
184 * src/tar.c: New option --check-links. Changed semantics of
185 -o to comply to UNIX98 when extracting and to its previous
186 semantics otherwise.
187 (main): Call check_links if --check-links. was given.
188
189 2003-07-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
190
191 * src/list.c (print_header): Revised
192 * NEWS: Started the entry for 1.13.26
193 * doc/Makefile.am (tar.dvi): Fixed TEXINPUTS value.
194
195 2003-07-24 Sergey Poznyakoff <gray@Mirddin.farlep.net>
196
197 * .cvsignore: Added to the repository.
198 * doc/.cvsignore: Likewise.
199 * lib/.cvsignore: Likewise.
200 * m4/.cvsignore: Likewise.
201 * po/.cvsignore: Likewise.
202 * scripts/.cvsignore: Likewise.
203 * src/.cvsignore: Likewise.
204 * tests/.cvsignore: Likewise.
205
206 * lib/Makefile.am: Added exitfail.[hc]
207 * src/misc.c (chdir_do): Fixed call to restore_cwd
208 * src/buffer.c (flush_read): Fixed behavior on short
209 reads right after opening the new archive (multiv01.sh test).
210 (new_volume): Special handling for "-".
211 * src/list.c (print_header): Print trailing slash if
212 current_trailing_slash was set (extrac03.sh,extrac04.sh tests).
213 * tests/multiv01.sh: Minor changes.
214 * m4/Makefile.am: Added missing files.
215
216 2003-07-05 Paul Eggert <eggert@twinsun.com>
217
218 Finish the checkin begin yesterday.
219
220 * NEWS: Document the user-visible changes installed in the last
221 two days.
222
223 * TODO: New file (actually, resurrected; but with new contents).
224
225 * src/list.c (read_and): Give full type for procedure arg.
226 (read_header): Strip trailing slashes, setting current_trailing_slash.
227 (tartime): Avoid int overflow when printing year (!).
228 (print_header): New arg specifying block ordinal. All uses changed.
229 Print link as 'h' type. Give labels for long links and names.
230
231 * src/misc.c (contains_dot_dot): Moved to names.c
232 (must_be_dot_or_slash): New function.
233 (safer_rmdir): Use it.
234 (remove_any_file): Now takes enum as option, not boolean.
235 Check for (Linux) EISDIR as well as (POSIX) EPERM when attempting
236 to unlink a directory.
237 (deref_stat): Accept bool, not int.
238
239 * src/names.c (namelist_match): Allow partial matches only if
240 recursive.
241 (hash_string_hasher): Renamed from hash_avoided_name.
242 (hash_string_compare): Renamed from compare_avoided_anames.
243 (hash_string_insert, hash_string_lookup): New functions.
244 (add_avoided_name, is_avoided_name): Use them.
245 (safer_name_suffix): New function.
246 (contains_dot_dot): Moved here from misc.c. Now returns bool, not int.
247
248 * src/rmt.c: Don't include print-copyr.h.
249 (prepare_input_buffer): New arg FD.
250 Do not read more than INT_MAX bytes at once,
251 since it breaks on some brain damaged Tru64 hosts.
252 Divide size by two
253 when retrying instead of subtracting 1024; for speed.
254 (main): Use gettext to translate (C), not print_copyright.
255
256 * src/system.h: Include <alloca.h> and <stdbool.h> unconditionally,
257 now that gnulib handles this.
258 Include <stddef.h> and <limits.h> unconditionally, now that we assume
259 C89 or better.
260 Assume that offsetof is defined in stddef.h.
261 Do not include <sys/param.h>.
262 (realloc, lseek): Do not declare.
263 (HAVE_DECL_VALLOC): Renamed from HAVE_VALLOC.
264 (CHAR_BIT, CHAR_MAX, UCHAR_MAX, LONG_MAX): Remove
265 declarations, since we now assume C89 or better.
266 (PARAMS): Remove, as we now assume C89. All uses changed.
267 (bindtextdomain, textdomain): Include <gettext.h> to define.
268 Include <unlocked-io.h>.
269 (valloc): Define if not defined, and if valloc is not declared.
270 (xstrdup): Remove decl.
271
272 * src/tar.c: Do not include <print-copyr.h>.
273 Include <getdate.h>.
274 (get_date): Remove decl.
275 (ATIME_PRESERVE_OPTION, CHECKPOINT_OPTION, FORCE_LOCAL_OPTION,
276 IGNORE_FAILED_READ_OPTION, INDEX_FILE_OPTION, NO_OVERWRITE_DIR_OPTION,
277 NUMERIC_OWNER_OPTION, RECURSIVE_UNLINK_OPTION, REMOVE_FILES_OPTION,
278 SHOW_OMITTED_DIRS_OPTION, TOTALS_OPTION): New constants.
279 (long_options, decode_options): Use them.
280 (OVERWRITE_DIR_OPTION): Remove.
281 (long_options): New options --index-file, --no-overwrite-dir.
282 Remove --overwrite-dir option.
283 (usage): Use PACKAGE_BUGREPORT.
284 (decode_options): Terminate new argv properly.
285 Use PACKAGE_NAME, PACKAGE_VERSION.
286 If verbose, report how we grokked any textual date option.
287 (main): Add support for index-file.
288
289 * tests/Makefile.am: Convert to UTF-8.
290 (AUTOMAKE_OPTIONS): Remove.
291 (TESTS): Add delete04.sh, multiv01.sh, options.sh.
292 (INCLUDES): Remove ../intl.
293 (LDADD): Don't link libtar.a twice.
294
295 * tests/genfile.c: Convert to UTF-8.
296 Don't include <print-copyr.h>.
297 (DEFAULT_PATTERN): Renamed from DEFAULT.
298 (ZEROS_PATTERN): Renamed from ZEROS.
299 (main): Use gettext to translate (C), not print_copyright.
300
301 2003-07-04 Paul Eggert <eggert@twinsun.com>
302
303 Revamp to meet current standards of autoconf, automake,
304 gettext, and gnulib, and incorporate new translations.
305
306 * config/config.guess, config/config.sub, config/depcomp,
307 config/install-sh, config/mdate-sh, config/missing,
308 config/mkinstalldirs, config/texinfo.texi:
309 Moved here from parent directory, or from doc.
310 * config.hin: Renamed from config.h.in.
311 * config/config.rpath: New file.
312
313 * intl: Remove this subdirectory.
314
315 * lib/fnmatch_.h: Renamed from lib/fnmatch.hin.
316
317 * lib/getstr.c, lib/getstr.h, lib/msleep.c, lib/print-copyr.c,
318 lib/print-copyr.h, lib/readutmp.c, lib/rename.c, lib/stpcpy.c,
319 lib/strstr.c, lib/strtoimax.c, lib/strtoll.c, lib/strtoull.c,
320 lib/strtoumax.c, lib/unicodeio.c, lib/unicodeio.h,
321 lib/xstrtoimax.c, m4/c-bs-a.m4, m4/ccstdc.m4, m4/check-decl.m4,
322 m4/decl.m4, m4/jm-mktime.m4, m4/prereq.m4, m4/xstrtoimax.m4,
323 stamp-h.in: Remove.
324
325 * lib/alloca_.h, lib/fnmatch_loop.c, lib/gettext.h, lib/pathmax.h,
326 lib/safe-write.c, lib/safe-write.h, lib/stdbool_.h, lib/strcase.h,
327 lib/stripslash.c, lib/unlocked-io.h, lib/xgetcwd.h, m4/alloca.m4,
328 m4/backupfile.m4, m4/bison.m4, m4/chown.m4, m4/dirname.m4,
329 m4/dos.m4, m4/exclude.m4, m4/fileblocks.m4, m4/ftruncate.m4,
330 m4/getdate.m4, m4/getopt.m4, m4/hash.m4, m4/human.m4,
331 m4/intdiv0.m4, m4/intmax_t.m4, m4/inttypes-pri.m4,
332 m4/inttypes_h.m4, m4/isc-posix.m4, m4/lchown.m4, m4/lib-ld.m4,
333 m4/lib-link.m4, m4/lib-prefix.m4, m4/memset.m4, m4/mktime.m4,
334 m4/modechange.m4, m4/nls.m4, m4/onceonly.m4, m4/pathmax.m4,
335 m4/po.m4, m4/quote.m4, m4/quotearg.m4, m4/rmdir.m4,
336 m4/safe-read.m4, m4/safe-write.m4, m4/save-cwd.m4, m4/savedir.m4,
337 m4/ssize_t.m4, m4/stdbool.m4, m4/stdint_h.m4, m4/strcase.m4,
338 m4/strtoimax.m4, m4/strtol.m4, m4/strtoll.m4, m4/strtoul.m4,
339 m4/strtoull.m4, m4/strtoumax.m4, m4/tm_gmtoff.m4, m4/uintmax_t.m4,
340 m4/unlocked-io.m4, m4/xalloc.m4, m4/xgetcwd.m4, m4/xstrtol.m4,
341 po/LINGUAS, po/Makevars, po/Rules-quot, po/boldquot.sed,
342 po/en@boldquot.header, po/en@quot.header, po/en_GB.po,
343 po/insert-header.sin, po/remove-potcdate.sin, po/stamp-po: New files.
344
345 * ABOUT-NLS, INSTALL, lib/addext.c, lib/alloca.c, lib/argmatch.c,
346 lib/argmatch.h, lib/backupfile.c, lib/backupfile.h, lib/dirname.c,
347 lib/dirname.h, lib/error.c, lib/exclude.c, lib/exclude.h,
348 lib/fnmatch.h, lib/full-write.c, lib/full-write.h, lib/getdate.h,
349 lib/getdate.y, lib/getline.c, lib/getline.h, lib/getopt.c,
350 lib/getopt.h, lib/getopt1.c, lib/hash.c, lib/hash.h, lib/human.c,
351 lib/human.h, lib/lchown.c, lib/malloc.c, lib/mktime.c,
352 lib/modechange.c, lib/modechange.h, lib/quote.c, lib/quote.h,
353 lib/quotearg.c, lib/quotearg.h, lib/realloc.c, lib/safe-read.c,
354 lib/safe-read.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
355 lib/savedir.h, lib/strcasecmp.c, lib/utime.c, lib/xalloc.h,
356 lib/xgetcwd.c, lib/xmalloc.c, lib/xstrdup.c, lib/xstrtol.c,
357 lib/xstrtol.h, lib/xstrtoumax.c, m4/codeset.m4, m4/d-ino.m4,
358 m4/error.m4, m4/fnmatch.m4, m4/getcwd.m4, m4/getline.m4, m4/gettext.m4,
359 m4/glibc21.m4, m4/iconv.m4, m4/inttypes.m4, m4/lcmessage.m4,
360 m4/longlong.m4, m4/malloc.m4, m4/mbrtowc.m4, m4/mbstate_t.m4,
361 m4/progtest.m4, m4/realloc.m4, m4/strerror_r.m4, m4/ulonglong.m4,
362 m4/utimbuf.m4, m4/utime.m4, m4/utimes.m4, m4/xstrtoumax.m4,
363 po/Makefile.in.in:
364 Upgrade to latest version from external source. The file "bootstrap"
365 now grabs these automatically, so we needn't keep track of them
366 in this change long any longer.
367
368 * Makefile.am (AUTOMAKE_OPTIONS): Remove. Now done by configure.ac.
369 (SUBDIRS): Remove intl.
370 * PORTS: Update for star, Macintosh.
371 * README, README-alpha: Suggest Autoconf 2.57, Automake 1.7.5,
372 Bison 1.875, gettext 0.12.1.
373 * THANKS: Add Bernhard Rosenkraenzer, Solar Designer.
374 * configure.ac (AC_INIT, AM_INIT_AUTOMAKE): Convert to modern form.
375 (AC_CONFIG_AUX_DIR): New.
376 (AC_CONFIG_HEADERS): Rename config.h.in to config.hin, to be more
377 like coreutils.
378 (AC_PREREQ): Bump from 2.52 to 2.57.
379 (AC_GNU_SOURCE): New.
380 (AC_PROG_GCC_TRADITIONAL, AM_C_PROTOTYPES, AC_C_CONST): Remove;
381 we no longer support K&R C.
382 (YACC): Remove.
383 (AC_CHECK_HEADERS): Remove limits.h, poll.h, stdbool.h, stropts.h,
384 sys/ioccom.h, sys/param.h, sys/time.h, sys/timeb.h, wchar.h, wctype.h.
385 (AC_MBSTATE_T): Remove.
386 (HAVE_UTIME_H, HAVE_DECL_FREE, HAVE_DECL_GETGRGID, HAVE_DECL_GETPWUID,
387 HAVE_DECL_GETENV, HAVE_DECL_MALLOC, HAVE_DECL_STRTOUL,
388 HAVE_DECL_STRTOULL, HAVE_MKNOD): Remove our special code.
389 (AM_STDBOOL_H): Add.
390 (AC_HEADER_TIME, AC_STRUCT_TIMEZONE,
391 jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Remove.
392 (AC_CHECK_TYPE): Remove ssize_t.
393 (gt_TYPE_SSIZE_T): Add.
394 (jm_AC_PREREQ_XSTRTOUMAX, jm_PREREQ_ADDEXT, jm_PREREQ_ERROR,
395 jm_PREREQ_HUMAN, jm_PREREQ_QUOTEARG, jm_PREREQ_XGETCWD,
396 AC_FUNC_ALLOCA, AC_FUNC_CLOSEDIR_VOID, AC_FUNC_STRERROR_R,
397 AC_FUNC_FNMATCH, AC_FUNC_VPRINTF, AM_FUNC_GETLINE, jm_FUNC_MALLOC,
398 jm_FUNC_MKTIME, jm_FUNC_REALLOC):
399 Remove. Switch to gnulib macros like gl_BACKUPFILE instead.
400 (tar_LDADD): Rename to LIB_CLOCK_GETTIME. All uses changed.
401 (rmt_LDADD): Rename to LIB_SETSOCKOPT. All uses changed.
402 (AC_CHECK_FUNCS): Remove fchdir, ftime, getcwd, isascii, nap,
403 napms, poll, select, strstr, usleep.
404 (AC_REPLACE_FUNCS): Remove ftruncate, lchown, memset, rename,
405 rmdir, strcasecmp, strncasecmp, strtol, strtoul.
406 (AM_GNU_GETTEXT): Use external and need-ngettext options.
407 (AM_GNU_GETTEXT_VERSION): New.
408 (AC_OUTPUT): Remove intl/Makefile.
409
410 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
411 ($(srcdir)/tar.info, tar.dvi): Remove obsolete warnings.
412 * doc/fdl.texi: Update to current GNU version.
413 * doc/gettext.texi: Update to current coreutils version,
414 plus a copyright notice.
415 * doc/tar.texi: Switch to new method for doing copyright notices.
416 Use @acronym instead of @sc where appropriate.
417 Remove empty examples. Give a few more examples.
418
419 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
420 (EXTRA_DIST, libtar_a_SOURCES): Switch to gnulib, so that they
421 are built up in pieces with +=.
422 (noinst_HEADERS, INCLUDES): Remove.
423 (BUILT_SOURCES, MAINTAINERCLEANFILES, MOSTLYCLEANFILES): New.
424 (libtar_a_LIBADD): Use $ rather than @.
425 (all-local, alloca.h, fnmatch.h, stdbool.h): New rules, from gnulib.
426
427 * m4/Makefile.am (EXTRA_DIST): Add alloca.m4, backupfile.m4,
428 bison.m4, chown.m4, dirname.m4, dos.m4, exclude.m4, fileblocks.m4,
429 ftruncate.m4, getdate.m4, getopt.m4, hash.m4, human.m4,
430 intdiv0.m4, intmax_t.m4, inttypes_h.m4, inttypes-pri.m4,
431 isc-posix.m4, lcown.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
432 memset.m4, mktime.m4, modechange.m4, nls.m4, onceonly.m4,
433 pathmax.m4, po.m4, quotearg.m4, quote.m4, rmdir.m4, safe-read.m4,
434 safe-write.m4, save-cwd.m4, savedir.m4, ssize_t.m4, stdbool.m4,
435 stdint_h.m4, strcase.m4, strtoimax.m4, strtoll.m4, strtol.m4,
436 strtoull.m4, strtoul.m4, strtoumax.m4, tm_gmtoff.m4, uintmax_t.m4,
437 unlocked-io.m4, xalloc.m4, xgetcwd.m4, xstrtol.m4.
438 Remove c-bs-a.m4, ccstdc.m4, check-decl.m4, decl.m4, jm-mktime.m4,
439 prereq.m4, xstrtoimax.m4.
440
441 * po/POTFILES.in: Remove tests/genfile.c; it doesn't need to
442 be translated, since it's not a user-visible tool.
443
444 * scripts/Makefile.am (AUTOMAKE_OPTIONS): Remove.
445
446 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
447 (INCLUDES): Remove ../intl. Put top-srcdir before ., for
448 consistency with coreutils.
449 (LDADD): Link LIBINTL after libtar.a, since
450 it's now external and should stand by itself.
451
452 * src/buffer.c (print_total_written): Adjust to new human.h
453 interface.
454 (child_open_for_compress): Do not increase size to BLOCKSIZE.
455 (open_archive): Open index file name.
456 Strip trailing slahes from file names.
457 (flush_write): Set size to 0 if not saving names.
458 (flush_write, flush_read): Use safer_name_suffix rather than
459 inline code.
460
461 * src/common.h: Include <quote.h>.
462 (absolute_names_option, atime_preserve_option, backup_option,
463 block_number_option, checkpoint_option, dereference_option,
464 force_local_option, ignore_failed_read_option, ignore_zeros_option,
465 incremental_option, interactive_option, multi_volume_option,
466 numeric_owner_option, one_file_system_option, recursive_unlink_option,
467 read_full_records_option, remove_files_option, same_order_option,
468 show_omitted_dirs_option, sparse_option, starting_file_option,
469 to_stdout_option, totals_option, touch_option, verify_option,
470 dev_null_output, now_verifying, we_are_root): Now bool, not int.
471 (current_trailing_slash, index_file_name, recent_long_name_blocks,
472 recent_long_link_blocks): New vars.
473 (NO_OVERWRITE_DIR_OLD_FILES): New constant.
474 (OVERWRITE_OLD_DIRS): Remove.
475 (enum remove_option): New enum.
476 (remove_any_file): Use it as option arg, not int.
477 (is_avoided_name, contains_dot_dot): Return bool, not int.
478 (safer_name_suffix): New decl.
479
480 * src/compare.c (now_verifying): Now bool, not int.
481 (fill_in_sparse_array): Move to extract.c. Now returns bool;
482 all callers changed to test for failure.
483 (diff_sparse_files): Take size from current_stat, not from param.
484 (diff_archive): Do not count trailing slashes in archives.
485 (verify_volume): Test for header failure after loop, not before.
486
487 * src/create.c (relativize): Remove; replaced by safer_name_suffix.
488 All callers changed.
489 (start_header): Clear devmajor and devminor fields, too.
490 (finish_header): New arg block_ordinal.
491 (init_sparsearray): Now extern. Set sp_array_size to
492 SPARSES_IN_OLDGNU_HEADER if it is zero.
493 (dump_file): Keep link table as a hash.
494 Do not count "file changed as we read it" as a failure.
495
496 * src/delete.c (recent_long_name_blocks, recent_long_link_blocks):
497 Move extern decl to common.h.
498
499 * src/extract.c (we_are_root): Now bool, not int.
500 (check_time): Warn about implausibly old time stamps.
501 (set_stat): Use utimbuf, not stat_info.
502 (prepare_to_extract): New arg DIRECTORY.
503 (fill_in_sparse_array): Moved here from compare.c.
504 (extract_sparse_file): Now returns off_t, giving size left.
505 Truncate file at end.
506 (extract_archive): Use safer_name_suffix rather than rolling our own.
507 Use fill_in_sparse_array rather than rolling our own.
508 Strip trailing slashes more effectively.
509 Check for unsafe names.
510
511 * src/incremen.c (struct directory): nfs and found are now of type
512 bool, not int.
513 (gnu_restore): Now takes directory name as argument, not offset
514 of directory name in a global. All uses changed.
515 (CURRENT_FILE_NAME): Remove.
516
517 New tests.
518 * tests/delete04.sh, tests/multiv01.sh, tests/options.sh: New
519 files.
520
521 2002-09-30 Paul Eggert <eggert@twinsun.com>
522
523 * src/rmt.c (prepare_input_buffer): Renamed form
524 prepare_record_buffer. All uses changed. Do not assume that
525 size_t is the same width as int.
526
527 2002-03-29 Paul Eggert <eggert@twinsun.com>
528
529 * src/incremen.c (get_directory_contents):
530 If ignore_failed_read_option, only warn about
531 get_directory_contents failures. Fix suggested by
532 Mark Costlow.
533
534 2002-01-31 Mark W. Eichin <eichin@thok.org>
535
536 * src/buffer.c (child_open_for_compress): Don't try to read
537 past the end of the buffer.
538
539 2001-10-11 Jim Meyering <meyering@lucent.com>
540
541 * argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
542 and quote_n (1, ... to avoid clobbering a buffer.
543
544 2001-09-26 Paul Eggert <eggert@twinsun.com>
545
546 * NEWS, configure.ac (AM_INIT_AUTOMAKE): Version 1.13.25.
547
548 * src/buffer.c (flush_read): Don't diagnose partial blocks before
549 end of file; just ignore them silently.
550
551 * src/list.c (read_header): Don't keep around extended name
552 and link info indefinitely; keep it only for the next file.
553 This fixes a bug introduced in 1.13.24, and removes the need
554 for some static variables. Set recent_long_name and
555 recent_long_link to zero if there were no long links; this
556 avoids a violation of ANSI C rules for pointers in delete.c.
557 * THANKS: Add Christian Laubscher.
558
559 2001-09-26 Jim Meyering <meyering@lucent.com>
560
561 * doc/tar.texi (Remote Tape Server): is know -> is known
562
563 2001-09-25 Paul Eggert <eggert@twinsun.com>
564
565 * lib/unicodeio.c (EILSEQ): Include <iconv.h> first, since
566 <iconv.h> may define EILSEQ (e.g. libiconv). Define a
567 replacement EILSEQ to be ENOENT, not EINVAL, since callers may
568 want to distinguish EINVAL and EILSEQ.
569
570 2001-09-24 Christophe Kalt <Christophe.Kalt@kbcfp.com>
571
572 * src/extract.c (maybe_recoverable):
573 Treat OVERWRITE_OLD_DIRS like DEFAULT_OLD_FILES.
574
575 2001-09-22 Paul Eggert <eggert@twinsun.com>
576
577 * NEWS, configure.ac (AM_INIT_AUTOMAKE): Version 1.13.24.
578
579 * ABOUT-NLS, intl/*: Update to gettext-0.10.40, replacing LGPL
580 with GPL.
581
582 * INSTALL, mkinstalldirs: Update to autoconf 2.52 version.
583 * PORTS: Add copyright notice, 'star' reference.
584 * README-alpha: Add copyright notice, autoconf 2.52 patch.
585 * THANKS: Add Christophe Kalt.
586 * config.sub: Upgrade to 2001-09-14 version.
587
588 * configure.ac (ALL_LINGUAS): Add ko.
589 * po/ko.po: Resurrected file.
590
591 * doc/convtexi.pl: Add coding advice for Emacs.
592
593 * doc/getdate.texi: Add copyright notice.
594
595 * doc/mdate-sh: Upgrade to automake 1.5 version.
596
597 * doc/tar.texi (extracting files): Mention --to-stdout.
598 (Option Summary, Dealing with Old Files): New option --overwrite-dir.
599 (Overwrite Old Files): Likewise.
600
601 * lib/Makefile.am (noinst_HEADERS):
602 Remove copysym.h. Add print-copyr.h, unicodeio.h.
603 (libtar_a_SOURCES): Remove copysym.c, Add print-copyr.c, unicodeio.c.
604
605 * lib/copysym.c, lib/copysym.h: Remove.
606 * lib/print-copyr.c, lib/print-copyr.h, lib/unicodeio.c,
607 lib/unicodeio.h: New files.
608
609 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
610 lib/mktime.c, lib/strtoll.c: Switch from LGPL to GPL.
611
612 * lib/quotearg.c (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
613 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
614
615 * m4/Makefile.am (EXTRA_DIST): Remove isc-posix.m4.
616 * m4/isc-posix.m4: Remove.
617
618 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit.
619
620 * po/POTFILES.in: Add copyright notice.
621
622 * src/Makefile.am (LDADD): Like libtar.a before @INTLLIBS@ as
623 well as after.
624 * tests/Makefile.am (LDADD): Likewise.
625
626 * src/buffer.c (write_archive_buffer, close_archive):
627 If an archive is a socket, treat it like a FIFO.
628 (records_read, records_written): New vars.
629 (write_archive_to_stdout): Now bool, not int.
630 (open_archive, flush_write, flush_read): Keep records_read and
631 records_written up to date.
632
633 * src/common.h (enum old_files): New value OVERWRITE_OLD_DIRS.
634 (write_archive_to_stdout): Now bool, not int.
635 (enum read_header): New value HEADER_SUCCESS_EXTENDED.
636 (read_header): Now takes bool arg. Existing callers modified
637 to pass 0, unless otherwise specified.
638
639 * src/delete.c (records_read): Remove; now a global.
640 (acting_as_filter): Now bool, not int.
641 (recent_long_name, recent_long_link, recent_long_name_blocks,
642 recent_long_link_blocks, records_read, records_written): New decls.
643 (records_skipped): New var.
644 (move_archive): Don't divide by zero if arg is 0.
645 Use the above vars to compute how far to move.
646 (write_recent_blocks): New function.
647 (delete_archive_member): Pass 1 to read_header, so that it doesn't
648 read more than 1 block. Handle resulting HEADER_SUCCESS_EXTENDED code.
649 Keep track of how many records have been skipped.
650 Let the buffer code count records.
651 When copying a header, copy any extended headers that came before it.
652
653 * src/extract.c (extract_archive): When marking a directory to be
654 updated after symlinks, stat all directories after it in the
655 delayed-set-stat list too, since they will be checked after
656 symlinks. Add support for --overwrite-dir.
657
658 * src/list.c (recent_long_name, recent_long_link,
659 recent_long_name_blocks, recent_long_link_blocks): New vars.
660 (read_and): Pass 0 to read_header.
661 (read_header): New arg RAW_EXTENDED_HEADERS. Store away extended
662 headers into new vars. Null-terminate incoming symbolic links.
663
664 * src/rmt.c: Include print-copyr.h, not copysym.h.
665 (main): Use print_copyright, not copyright_symbol.
666 * src/tar.c (decode_options): Likewise.
667 (OVERWRITE_DIR_OPTION): New constant.
668 (long_options, usage, decode_options): Add --overwrite-dir.
669
670 * src/tar.h: Put copyright notice into documentation.
671
672 * tests/Makefile.am (TESTS): Add delete03.sh.
673 * tests/delete03.sh: New file.
674
675 * tests/genfile.c: Include print-copyr.h, not copysym.h.
676 (main): Use print_copyright, not copyright_symbol.
677 Include <argmatch.h>.
678 (pattern_strings): Remove.
679 (pattern_args, pattern_types): New constants.
680 (main): Use XARGMATCH, not argmatch.
681
682 2001-09-20 Jim Meyering <meyering@lucent.com>
683
684 * lib/xstrtol.c (strtoimax): Guard declaration with
685 `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
686 The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
687 have their own, conflicting declaration of strtoimax in sys/inttypes.h.
688 (strtoumax): Likewise, for completeness (it wasn't necessary).
689 * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
690 Check for declaration of strtoimax.
691 * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
692 Check for declaration of strtoumax.
693
694 2001-09-16 Paul Eggert <eggert@twinsun.com>
695
696 * fnmatch.m4 (jm_FUNC_FNMATCH): Fix typo in previous patch: yes -> no.
697
698 2001-09-14 Paul Eggert <eggert@twinsun.com>
699
700 * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.23.
701
702 * README-alpha: Describe automake patch.
703
704 * configure.ac (LIBOBJS):
705 Remove automake 1.4 workaround, as we're using 1.5 now.
706 (USE_INCLUDED_LIBINTL): New AC_DEFINE.
707
708 * lib/copysym.c: Include stddef.h, for size_t.
709 Include langinfo.h if needed.
710 Use locale_charset only if USE_INCLUDED_LIBINTL;
711 if not, use nl_langinfo (CODESET) if available.
712
713 2001-09-13 Paul Eggert <eggert@twinsun.com>
714
715 * config.guess, config.sub: Sync with canonical versions.
716
717 * configure.ac (jm_PREREQ_XGETCWD): Add.
718
719 * lib/Makefile.am (noinst_HEADERS): Add copysym.h.
720 (libtar_a_SOURCES): Add copysym.c.
721 * copysym.c, copysym.h: New files.
722
723 * lib/error.c: Sync with fileutils version.
724
725 * m4/Makefile.am (EXTRA_DIST): Add getcwd.m4; remove uintmax_t.m4.
726 * m4/getcwd.m4: New file.
727 * m4/uintmax_t.m4: Remove.
728
729 * m4/gettext.m4 (AM_WITH_NLS):
730 Fix bug with calculating version of Bison 1.29.
731 Reported by Karl Berry.
732
733 * src/Makefile.am (datadir): Remove.
734
735 * src/rmt.c: Include copysym.h.
736 (main): Use copyright_symbol to translate copyright notice,
737 instead of gettext.
738 * src/tar.c: Likewise.
739 * tests/genfile.c: Likewise.
740
741 * src/system.h (MB_LEN_MAX): New symbol.
742
743 2001-09-11 Paul Eggert <eggert@twinsun.com>
744
745 * src/extract.c (struct delayed_set_stat): New member
746 'after_symlinks'.
747 (delay_set_stat): Initialize it to 0.
748 (set_mode): New arg current_stat_info. Use it (if nonnull) to avoid
749 taking an extra stat ourselves. All callers changed.
750 (set_stat): Likewise.
751 (apply_nonancestor_delayed_set_stat): New arg 'after_symlinks'.
752 If false, stop when encountering a struct whose 'after_symlinks'
753 member is true. Otherwise, go through all structures but check
754 them more carefully. All callers changed.
755 (extract_archive): When extracting a deferred symlink, if its parent
756 directory's status needs fixing, then mark the directory as needing
757 to be fixed after symlinks.
758 (extract_finish): Fix status of ordinary directories, then apply
759 delayed symlinks, then fix the status of directories that are
760 ancestors of delayed symlinks.
761
762 * src/rtapelib.c (rexec):
763 Remove declaration; it ran afoul of prototypes on Crays.
764 Reported by Wendy Palm of Cray.
765
766 2001-09-06 Paul Eggert <eggert@twinsun.com>
767
768 * lib/strtoimax.c (HAVE_LONG_LONG):
769 Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
770 (strtoimax): Use sizeof (long), not
771 sizeof strtol (ptr, endptr, base),
772 to work around bug in IBM C compiler.
773
774 2001-09-04 Paul Eggert <eggert@twinsun.com>
775
776 * lib/xgetcwd.c: Include "xalloc.h".
777 (xgetcwd): Do not return NULL when memory is exhausted; instead,
778 report an error and exit.
779
780 * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
781 (jm_PREREQ): Use it.
782
783 2001-09-03 Paul Eggert <eggert@twinsun.com>
784
785 * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
786 (jm_PREREQ_XGETCWD): New macro.
787
788 * lib/exclude.c (fnmatch_no_wildcards):
789 Fix typo that caused us to do case-folding
790 search even when that was not desired. This occurred only in the
791 no-wildcard case.
792
793 * lib/xgetcwd.c: Include pathmax.h if not HAVE_GETCWD.
794 Do not include xalloc.h.
795 (INITIAL_BUFFER_SIZE): New symbol.
796 Do not use xmalloc / xrealloc, since the caller is responsible for
797 handling errors. Preserve errno around `free' during failure.
798 Do not overrun buffer when using getwd.
799
800 * lib/xgetcwd.c (xgetcwd):
801 Use HAVE_GETCWD_NULL, not defined __GLIBC__ && __GLIBC__ >= 2,
802 to decide whether to use getcwd (NULL, 0).
803
804 2001-09-02 Paul Eggert <eggert@twinsun.com>
805
806 * lib/xgetcwd.c: Fix typo in local var; from Jim Meyering.
807
808 2001-09-01 Jim Meyering <meyering@lucent.com>
809
810 * exclude.c: Use `""', not `<>' to #include non-system header files.
811 (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
812 and strncasecmp as r-values. Unixware didn't have declarations.
813
814 2001-08-31 Jim Meyering <meyering@lucent.com>
815
816 * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
817 Use an initial, malloc'd, buffer of length 128 rather than
818 a statically allocated one of length 1024.
819
820 2001-08-30 Paul Eggert <eggert@twinsun.com>
821
822 * lib/utime.c: Include full-write.h.
823 * lib/xstrtol.c (strtoimax): New decl.
824
825 2001-08-29 Paul Eggert <eggert@twinsun.com>
826
827 * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.22.
828
829 * src/create.c (dump_file): Relativize link names before dumping.
830 This fixes a bug reported by Jose Pedro Oliveira.
831
832 * src/create.c (dump_file): Use offsetof when computing sizes for
833 struct hack; this avoids wasted space in some cases.
834 * src/incremen.c (note_directory, find_directory): Likewise.
835 * src/names.c (name_gather, addname): Likewise.
836
837 * src/extract.c (extract_archive): Use strcpy, not memcpy,
838 for consistency with other code that does similar things.
839 * src/names.c (name_gather): Likewise.
840
841 * src/names.c (read_name_from_file, name_next, name_gather,
842 add_hierarchy_to_namelist): Avoid quadratic behavior when
843 reallocating buffers. Check for buffer size overflow.
844 (addname): Avoid unnecessary clearing of memory.
845
846 2001-08-29 "Jan D." <Jan.Djarv@mbox200.swipnet.se>
847
848 * src/extract.c (delay_set_stat): Fix off-by-one error in file
849 name size allocation that caused core dumps.
850
851 2001-08-28 Paul Eggert <eggert@twinsun.com>
852
853 * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.21.
854
855 * configure.ac (GNU_SOURCE): Define to 1, not /**/.
856 (major_t, minor_t, ssize_t): Use new-style AC_CHECK_TYPE.
857 (daddr_t): Remove; no longer used.
858 (jm_PREREQ_HUMAN): Add.
859
860 * acconfig.h: Remove; no longer needed.
861
862 * config.guess, config.sub:
863 New files, from automake 1.5. Gettext 0.10.39 needs them.
864 * depcomp, missing, mkinstalldirs: Upgrade to automake 1.5.
865
866 * Makefile.am (AUTOMAKE_OPTIONS): Add dist-bzip2.
867 (SUBDIRS): Put intl before lib, as gettext requires.
868
869 * ABOUT-NLS: Upgrade to gettext 0.10.39.
870 * intl: Upgrade entire directory to gettext 0.10.39.
871 * m4/codeset.m4, m4/glibc21.m4, m4/iconv.m4:
872 New files, from gettext 0.10.39.
873 * m4/gettext.m4, m4/isc-posix.m4, m4/lcmessage.m4, m4/progtest.m4,
874 Upgrade to gettext 0.10.39,
875 * po/Makefile.in.in: Likewise, except fix a typo in its copying
876 permissions.
877 * po/cat-id-tbl.c, po/stamp-cat-id:
878 Remove; no longer used by gettext 0.10.39.
879 * po/ChangeLog: New file.
880
881 * doc/Makefile.am (EXTRA_DIST): Add freemanuals.texi.
882 $(srcdir)/tar.texi: Likewise.
883 * doc/freemanuals.texi: New file.
884 * doc/tar.texi (Free Software Needs Free Documentation): New appendix.
885 `fileds' -> `fields'
886 * doc/texinfo.tex: Upgrade to version 2001-07-25.07.
887
888 * lib/Makefile.am (EXTRA_DIST): Add strtoll.c, strtoimax.c.
889 (noinst_HEADERS): Add quote.h.
890 (libtar_a_SOURCES): Add quote.c, xstrtoimax.c.
891
892 * lib/exclude.c: Fix typo in '#include <stdint.h>' directive.
893
894 * lib/full-write.c, lib/savedir.c: Comment fix.
895
896 * lib/pathmax.h: Remove.
897
898 * lib/quote.c, lib/quote.h: New files.
899
900 * lib/xgetcwd.c: Don't include pathmax.h.
901 Include stdlib.h and unistd.h if available.
902 Include xalloc.h.
903 (xmalloc, xstrdup, free): Remove decls.
904 (xgetcwd): Don't assume sizes fit in unsigned.
905 Check for overflow when computing sizes.
906 Simplify reallocation code.
907
908 * lib/xmalloc.c: Quote failure tests.
909
910 * lib/strtoumax.c, lib/xstrtoimax.c: New files.
911
912 * lib/strtoimax.c: Renamed from strtouxmax.c. Make it more
913 similar to strtol.c.
914 (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.
915 (verify): New macro.
916 (strtoumax, uintmax_t, strtoull, strtol): Remove.
917 (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
918 (strtoimax): Renamed from strtoumax. All uses of unsigned values
919 changed to signed values. Check sizes at compile-time, not
920 run-time. Prefer strtol to strtoll if both work.
921 (main): Remove.
922
923 * lib/xstrtol.h (xstrtoimax): New decl.
924
925 * m4/Makefile.am (EXTRA_DIST):
926 Add codeset.m4, glibc21.m4, iconv.m4, inttypes.m4,
927 longlong.m4, xstrtoimax.m4.
928
929 * m4/inttypes.m4 (jm_AC_HEADER_INTTYPES_H):
930 Remove; now done by autoconf.
931 (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T): Replace with
932 Use AC_CHECK_TYPE instead of merely looking for the header.
933
934 * m4/uintmax_t.m4: Use shorter comment.
935
936 * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
937 Quote first arg of AC_DEFUN.
938 Require jm_AC_TYPE_INTMAX_T and jm_AC_TYPE_LONG_LONG since they
939 is needed to parse the include file.
940 Simplify logic behind the args to AC_REPLACE.
941
942 * src/Makefile.am (OMIT_DEPENDENCIES): Remove.
943
944 * src/ansi2knr.1, src/ansi2knr.c: Remove; wasn't being used.
945
946 * src/rmt.c (main):
947 Use "Copyright %d" to simplify the translator's job in the future.
948 Advise translator about circle-C.
949 * src/tar.c: (decode_options): Likewise.
950 * tests/genfile.c (main): Likewise.
951
952 2001-08-28 Jim Meyering <meyering@lucent.com>
953
954 * lib/argmatch.c: Include "quote.h".
955 (argmatch_invalid): Quote the context.
956
957 * lib/dirname.c (dir_name): Fix typo on PC platforms.
958
959 * lib/backupfile.c, lib/basename.c, lib/dirname.c, lib/strtoul.c:
960 Use single-quote for local .h files.
961
962 * lib/error.h (__attribute__): Don't depend on __STRICT_ANSI__.
963
964 * lib/getopt.c, lib/getopt.h, lib/getopt1.c: Upgrade to recent
965 glibc versions.
966
967 * lib/getdate.y (get_date): Initialize tm_isdst to -1 before
968 invoking mktime the last time.
969
970 * lib/pathmax.h: Use #if rather than #ifdef for HAVE_UNISTD_H.
971
972 * lib/rename.c: Major rewrite by Volker Borchert to use system
973 rename function, but to work around problems with trailing
974 slashes.
975
976 * lib/strtoll.c: New file, from glibc.
977 * lib/strtoul.c: Update from glibc.
978
979 * lib/strtouxmax.c: Renamed from lib/strtoumax.c.
980 Add support for signed numbers, too.
981 (strtoul, strtoull): Do not declare if STRTOUXMAX_UNSIGNED
982 is not defined.
983 (strtol, strtoll): Declare as needed, if STRTOUXMAX_UNSIGNED is
984 not defined.
985 (strtoumax, uintmax_t, strtoull, strtoul): New macros.
986 (main): Use generic names in debugging output.
987 * lib/strtoimax.c: Plus add the following changes of my own:
988 (main): Use accurate names in debugging output.
989
990 * lib/xgetcwd.c (xgetcwd): Use getcwd if glibc 2 or later.
991 Don't use PATH_MAX.
992
993 * m4/c-bs-a.m4, m4/check-decl.m4, m4/d-ino.m4, m4/error.m4,
994 m4/getline.m4, m4/jm-mktime.m4, m4/malloc.m4, m4/mbrtowc.m4,
995 m4/mbstate_t.m4, m4/realloc.m4, m4/uintmax_t.m4, m4/utimbuf.m4,
996 m4/utime.m4, m4/utimes.m4:
997 Quote the first argument in each use of AC_DEFUN.
998
999 * m4/getline.m4: Don't use string.h.
1000
1001 * m4/inttypes.m4, m4/longlong.m4, m4/xstrtoimax.m4: New files.
1002
1003 * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): @%:@ -> #.
1004
1005 2001-08-27 Paul Eggert <eggert@twinsun.com>
1006
1007 * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.20.
1008
1009 The biggest change is the new --exclude semantics and options.
1010 The basic idea was suggested by Gerhard Poul; thanks!
1011
1012 * NEWS: Describe new --exclude semantics and options, and bug fixes.
1013 * README: ignfail.sh fails on some NFS hosts.
1014 * NEWS, README, lib/xstrtol.h: Add copyright notice.
1015
1016 * Makefile.am (ACLOCAL_AMFLAGS): Add -I m4.
1017 (M4DIR, ACINCLUDE_INPUTS, $(srcdir)/acinclude.m4):
1018 Remove; the automake bug has been fixed.
1019 * acinclude.m4: Remove.
1020
1021 * configure.ac: Renamed from configure.in.
1022 (AC_PREREQ): Bump from 2.13 to 2.52.
1023 (ALL_LINGUAS): Add id, tr. Remove ko, as po/ko.po (dated
1024 1997-05-30) has an encoding error.
1025 (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf.
1026 (AC_FUNC_FNMATCH): Use AC_CONFIG_LINKS, not AC_LINK_FILES.
1027
1028 * doc/fdl.texi: Update to current GNU version.
1029
1030 * doc/tar.texi: Put leading '*' in direntry.
1031 Accommodate new gfdl sectioning.
1032 New option --recursion (the default) that is the inverse of
1033 --no-recursion.
1034
1035 New options --anchored, --ignore-case, --wildcards,
1036 --wildcards-match-slash, and their negations (e.g., --no-anchored).
1037 Along with --recursion and --no-recursion, these control how exclude
1038 patterns are interpreted. The default interpretation of exclude
1039 patterns is now --no-anchored --no-ignore-case --recursion
1040 --wildcards --wildcards-match-slash.
1041
1042 * lib/Makefile.am (OMIT_DEPENDENCIES): Remove.
1043
1044 * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
1045 (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
1046 (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
1047 Include if available.
1048 (<xalloc.h>): Include
1049 (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
1050 (verify): New macro. Use it to verify that EXCLUDE macros do not
1051 collide with FNM macros.
1052 (struct patopts): New struct.
1053 (struct exclude): Use it, as exclude patterns now come with options.
1054 (new_exclude): Support above changes.
1055 (new_exclude, add_exclude_file):
1056 Initial size must now be a power of two to simplify overflow checking.
1057 (free_exclude, fnmatch_no_wildcards): New function.
1058 (excluded_filename): No longer requires options arg, as the options
1059 are determined by add_exclude. Now returns bool, not int.
1060 (excluded_filename, add_exclude):
1061 Add support for the fancy new exclusion options.
1062 (add_exclude, add_exclude_file): Now takes int options arg.
1063 Check for arithmetic overflow when computing sizes.
1064 (add_exclude_file): xrealloc might modify errno, so don't
1065 realloc until after errno might be used.
1066
1067 * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
1068 New macros.
1069 (free_exclude): New decl.
1070 (add_exclude, add_exclude_file): Now takes int options arg.
1071 (excluded_filename): No longer requires options arg, as the options
1072 are determined by add_exclude. Now returns bool, not int.
1073
1074 * lib/prepargs.c: Include <string.h>; required for C99 since
1075 we use strlen.
1076
1077 * lib/quotearg.c:
1078 BSD/OS 4.1 wchar.h requires FILE and struct tm to be declared.
1079
1080 * lib/xstrtol.h (_DECLARE_XSTRTOL): Improve quality of
1081 diagnostic for LONGINT_INVALID_SUFFIX_CHAR.
1082
1083 * m4/Makefile.am (EXTRA_DIST): Add check-decl.m4, mbrtowc.m4.
1084 Remove inttypes_h.m4, largefile.m4, mktime.m4.
1085
1086 * m4/inttypes_h.m4, m4/largefile.m4, m4/mktime.m4: Remove;
1087 subsumed by Autoconf 2.50.
1088
1089 * m4/error.m4: Upgrade to serial 2.
1090
1091 * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Upgrade to serial 4, but
1092 remove test for GNU C library. It's not correct, as some
1093 older glibcs are buggy.
1094
1095 * m4/getline.m4, m4/malloc.m4: Upgrade to serial 4.
1096
1097 * m4/prereq.m4: Upgrade to serial 20, but then:
1098 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
1099 (jm_PREREQ_EXCLUDE): New macro.
1100 (jm_PREREQ_HUMAN): Remove jm_AC_HEADER_INTTYPES_H, as it is subsumed
1101 by autoconf 2.5x.
1102
1103 * m4/realloc.m4: Upgrade to serial 4.
1104
1105 * m4/strerror_r.m4: Revert to serial 1002.
1106
1107 * m4/uintmax_t.m4: Upgrade to autoconf 2.5x.
1108
1109 * m4/utimes.m4: Upgrade to latest version (still "serial 3").
1110
1111 * m4/xstrtoumax.m4: Upgrade to serial 3, but then:
1112 (jm_AC_PREREQ_XSTRTOUMAX): Remove jm_AC_HEADER_INTTYPES_H, as
1113 it is now subsumed by autoconf. Add inttypes.h.
1114
1115 * po/cs.po, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
1116 po/it.po, po/pl.po, po/sl.po, po/sv.po: Sync with translation project.
1117
1118 * src/buffer.c (new_volume): Stop if the script exits with an error.
1119
1120 * src/common.h (excluded_with_slash, excluded_without_slash):
1121 Remove, replacing by:
1122 (excluded): New decl.
1123 (link_error): New decl.
1124 (excluded_name): Now returns bool.
1125
1126 * src/extract.c:
1127 (struct delayed_symlinks, extract_archive, apply_delayed_symlinks):
1128 Support hard links to symbolic links.
1129
1130 (struct delayed_symlink): Remove 'names' member, replacing it with
1131 'sources' and 'target' member. All uses changed.
1132
1133 (struct string_list): New type.
1134
1135 (delayed_set_stat, extract_archive): Use offsetof when computing sizes
1136 for struct hack; this avoids wasted space in some cases.
1137
1138 (extract_archive): Fix test for absolute pathnames and/or "..".
1139 Use link_error to report errors for links.
1140 Remove redundant trailing '/' at "really_dir", for all uses, not
1141 just before invoking mkdir.
1142 If overwriting old files, do not worry so much about existing
1143 directories.
1144 Fix mode computation in the case where the directory exists.
1145
1146 (apply_delayed_symlinks): If we can't make a hard link to a symbolic
1147 link, make a copy of the symbolic link.
1148
1149 * src/incremen.c (get_directory_contents):
1150 If ignore_failed_read_option, only warn about
1151 stat failures.
1152
1153 * src/list.c (from_header): Do not issue a diagnostic if TYPE is zero.
1154 However, check for error even for '-' or '+' case.
1155
1156 (print_header): Try parsing uids and gids as unsigned integers first,
1157 and as a uid_t or gid_t only if that fails. This adds support for
1158 listing positive uids and gids that are greater than UID_MAX and
1159 GID_MAX.
1160
1161 * src/misc.c (link_error): New function.
1162
1163 * src/names.c (collect_and_sort_names):
1164 If ignore_failed_read_option, only warn about
1165 stat errors.
1166
1167 (excluded_name): Now returns bool. Simplify, as the fancy
1168 features are now all in excluded_filename.
1169
1170 * src/rtapelib.c (base_name): Remove decl, as system.h now
1171 declares it.
1172
1173 * src/system.h: Include stddef.h if available.
1174 (offsetof): Declare if stddef.h doesn't.
1175
1176 Include <dirname.h>.
1177 (FILESYSTEM_PREFIX_LEN, ISSLASH): Remove; now defined by dirname.h.
1178
1179 * src/tar.c (ANCHORED_OPTION, IGNORE_CASE_OPTION,
1180 NO_ANCHORED_OPTION, NO_IGNORE_CASE_OPTION, NO_WILDCARDS_OPTION,
1181 NO_WILDCARDS_MATCH_SLASH_OPTION, WILDCARDS_OPTION,
1182 WILDCARDS_MATCH_SLASH_OPTION):
1183 New enum values.
1184
1185 (long_options, usage, decode_options): Add support for --anchored,
1186 --ignore-case, --no-anchored, --no-ignore-case, --no-wildcards,
1187 --no-wildcards-match-slash, --recursion, --wildcards,
1188 --wildcards-match-slash.
1189
1190 (decode_options): Implement the new way of interpreting exclude
1191 patterns.
1192
1193 (usage): --newer-mtime takes a DATE operand. DATE may be a file name.
1194
1195 (OPTION_STRING, decode_options): Add -I, -y. Currently these options
1196 just print error messages suggesting alternatives.
1197
1198 (add_filtered_exclude): Remove.
1199
1200 * tests/Makefile.am (TESTS): Alphabetize, except put version.sh first.
1201
1202 * tests/extrac04.sh (out): Remove
1203 directory/subdirectory/file1, as the new semantics for
1204 --exclude exclude it.
1205
1206 * tests/genfile.c (main): Don't use non-ASCII char in msgid.
1207
1208 2001-08-12 Paul Eggert <eggert@twinsun.com>
1209
1210 * lib/addext.c (<errno.h>): Include.
1211 (errno): Declare if not defined.
1212 (addext): Work correctly on the Hurd, where pathconf returns -1 and
1213 leaves errno alone, because there is no limit. Also, work even if
1214 size_t is narrower than long.
1215
1216 2001-07-08 Paul Eggert <eggert@twinsun.com>
1217
1218 * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
1219
1220 2001-05-10 Paul Eggert <eggert@twinsun.com>
1221
1222 * lib/addext.c (ISSLASH, base_name): Remove decls; now in dirname.h.
1223 Include <backupfile.h> and <dirname.h> after size_t is defined.
1224 (addext): Use base_len to trim redundant trailing slashes instead of
1225 doing it ourselves.
1226
1227 * lib/backupfile.c (ISSLASH, base_name):
1228 Remove decls; now in dirname.h.
1229 Include <argmatch.h>, <backupfile.h>, <dirname.h> after size_t
1230 is defined.
1231 (find_backup_file_name): Rename locals to avoid new functions.
1232 Use base_len instead of rolling it ourselves.
1233 Work even if dirlen is 0.
1234 Use a dir of '.' if given the empty string.
1235
1236 * lib/basename.c:
1237 Do not include <stdio.h>, <assert.h>; no longer needed.
1238 (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Remove; now in dirname.h.
1239 Include <string.h>, <dirname.h>.
1240 (base_name): Allow file names ending in slashes, other than names
1241 that are all slashes. In this case, return the basename followed
1242 by the slashes.
1243
1244 * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
1245 (FILESYSTEM_PREFIX_LEN, ISSLASH): Remove; now in dirname.h.
1246 (dir_len): Renamed from dirlen.
1247 All callers changed.
1248
1249 * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
1250 New macros.
1251 (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
1252
1253 2001-02-16 Paul Eggert <eggert@twinsun.com>
1254
1255 * lib/quotearg.c (mbrtowc, mbrtowc, mbsinit):
1256 Do not declare or define if HAVE_MBRTOWC,
1257 since the test for HAVE_MBRTOWC now requires proper declarations.
1258
1259 * lib/alloca.c (malloc): Undef before defining.
1260
1261 2001-02-13 Paul Eggert <eggert@twinsun.com>
1262
1263 * src/compare.c (read_and_process): Use off_t for size.
1264 From Maciej W. Rozycki.
1265
1266 2001-01-26 Paul Eggert <eggert@twinsun.com>
1267
1268 * lib/quotearg.c: Include stddef.h. From Jim Meyering.
1269
1270 2001-01-12 Paul Eggert <eggert@twinsun.com>
1271
1272 * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.19.
1273
1274 * lib/savedir.h (savedir): Remove size arg.
1275
1276 * doc/tar.texi: Add @setchapternewpage odd.
1277 Remove -I as an alias for -T, for now.
1278 Add @dircategory.
1279 Update copyright. Remove "Published by".
1280 Dates beginning with / or . are taken to be file names.
1281
1282 * src/tar.c (<time.h>): Do not include;
1283 (time): Do not declare.
1284 (usage): Remove -I as an alias for -T.
1285 (OPTION_STRING): Remove -I.
1286 (decode_options): Dates that look like an absolute path name,
1287 or that start with '.', are presumed to be file names whose
1288 dates are taken.
1289 Remove 'I' as an aliase for 'T'.
1290 Update copyright.
1291
1292 * src/extract.c (<time.h>): Do not include; system.h now does this.
1293 (make_directories): Skip filesystem prefixes.
1294 Don't assume '/' is the only separator.
1295 (extract_sparse_file): Use new full_write semantics.
1296 On write error, return instead of invoking skip_file.
1297 Do not free sparsearray; caller does this now.
1298 (apply_nonancestor_delayed_set_stat): Do not assume '/' is the only
1299 separator.
1300 (extract_archive): Don't assume file name lengths fit in int.
1301 Report what got stripped from member name; it might be more than '/'.
1302 Use new full_write semantics.
1303 Do not pass redundant trailing "/" to mkdir, as POSIX does not allow
1304 mkdir to ignore it.
1305 Do not report mkdir error if old_files_option == KEEP_OLD_FILES.
1306
1307 * src/buffer.c (<time.h>): Do not include; system.h now does this.
1308 (time): Remove decl; likewise.
1309 (child_open_for_uncompress): Use new full_write semantics.
1310 (flush_write): Use ISSLASH instead of testing for '/'.
1311 (flush_read): Likewise.
1312
1313 * src/rmt.h (_remdev): Look for / anywhere in Path.
1314
1315 * src/misc.c (contains_dot_dot): Skip filesystem prefix.
1316 Don't assume '/' is the only separator.
1317 (safer_rmdir): Don't assume '/' is the only separator.
1318
1319 * src/compare.c (diff_archive): Don't assume '/' is the only separator.
1320
1321 * lib/dirname.h (dirlen): New decl.
1322
1323 * src/incremen.c (get_directory_contents):
1324 Remove path_size arg; all callers changed.
1325 Don't assume '/' is the only directory separator.
1326 (gnu_restore): Work even if file name length doesn't fit in int.
1327
1328 * lib/addext.c (ISSLASH): New macro.
1329 (addext): Trim any redundant trailing slashes.
1330
1331 * src/names.c (name_next):
1332 Don't assume '/' is the only directory separator.
1333 (namelist_match): Likewise.
1334 (add_hierarchy_to_namelist): Remove dirsize arg.
1335 Do not assume '/' is the only directory separator.
1336 (new_name): Likewise.
1337
1338 * lib/Makefile.am (noinst_HEADERS): Add dirname.h, full-write.h.
1339 (libtar_a_SOURCES): Add dirname.c.
1340
1341 * src/create.c (relativize):
1342 New function, with much of old start_header's guts.
1343 Handle filesystem prefixes.
1344 (start_header): Use this new function.
1345 (init_sparsearray): Don't bother to zero out the new array;
1346 it's not needed.
1347 (deal_with_sparse): Fix array allocation bug.
1348 (create_archive): Don't assume '/' is the only separator.
1349 (dump_file): Likewise.
1350 Don't worry about leading / in symlink targets.
1351
1352 * lib/savedir.c (savedir):
1353 Remove size arg; it wasn't portable. All callers changed.
1354
1355 * lib/utime.c (utime_null): Adjust to new full_write convention.
1356
1357 * configure.in (YACC): Avoid portability problem with Ultrix sh.
1358
1359 * lib/backupfile.c: Include <dirname.h>.
1360 (ISSLASH): New macro.
1361 (find_backup_file_name): Use dirlen to calculate directory lengths.
1362 (max_backup_version): Strip redundant trailing slashes.
1363
1364 * src/common.h: Include <full-write.h>.
1365 (get_directory_contents): No longer has size arg.
1366 (gnu_restore): Arg is size_t, not int.
1367
1368 * src/system.h: Include <time.h>.
1369 (time): Declare if not defined.
1370
1371 * lib/full-write.c: Include full-write.h, not safe-read.h.
1372 full_write returns size_t, with short writes meaning failure.
1373 All callers changed.
1374
1375 * src/rtapelib.c: Include full-write.h.
1376
1377 * src/rmt.c: Include full-write.h.
1378 (main): Update copyright.
1379
1380 * doc/getdate.texi: Mention that only English is supported.
1381 Show how to use "date" so that the output is acceptable to getdate.
1382 Mention Z as an abbreviation for UTC.
1383
1384 * lib/full-write.h: New file.
1385
1386 * src/list.c: system.h now does time.h stuff.
1387
1388 * lib/dirname.c:
1389 Use HAVE_STDLIB_H, not STDC_HEADERS, to decide whether to include
1390 stdlib.h.
1391 Do not include string.h, strings.h, or assert.h; no longer needed.
1392 (strrchr, memrchr, malloc): Remove decls; no longer needed.
1393 Include <xalloc.h>.
1394 (base_name): New decl.
1395 (BACKSLASH_IS_PATH_SEPARATOR): Remove.
1396 (dir_name_r): Remove.
1397 (dirlen): New function.
1398 (dir_name): Use dirlen instead of dir_name_r.
1399 (<string.h>, <strings.h>): Include only if test program.
1400 (main): Use "return 0", not "exit (0)".
1401
1402 2000-12-08 Paul Eggert <eggert@twinsun.com>
1403
1404 * lib/dirname.h: New file.
1405
1406 2000-11-02 Vesselin Atanasov <vesselin@bgnet.bg>
1407
1408 * lib/fnmatch.c: Do not comment out all the code if we are using
1409 the GNU C library, because in some cases we are replacing buggy
1410 code in the GNU C library itself.
1411
1412 2000-10-30 Paul Eggert <eggert@twinsun.com>
1413
1414 * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
1415
1416 2000-10-29 Paul Eggert <eggert@twinsun.com>
1417
1418 * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.18.
1419
1420 * src/tar.c: Include <fnmatch.h>, for FNM_LEADING_DIR.
1421
1422 2000-10-28 Paul Eggert <eggert@twinsun.com>
1423
1424 * doc/tar.texi: --no-recursion now applies to extraction, too.
1425 * src/create.c (dump_file): no_recurse_option -> ! recursion_option
1426 * src/names.c (namelist_match, excluded_name):
1427 Do not match subfiles of a directory
1428 if --no-recursion is specified.
1429 * src/tar.c (NO_RECURSE_OPTION): Remove.
1430 (long_options): Have getopt set the --no-recursion flag.
1431 (decode_options): Initialize recursion_option to FNM_LEADING_DIR.
1432 Remove case for NO_RECURSE_OPTION.
1433 * src/common.h (recursion_option):
1434 Renamed from no_recurse_option, with sense
1435 negated, and with FNM_LEADING_DIR being the nonzero value.
1436
1437 * names.c (namelist_match): New function.
1438 (name_match, name_scan): Use it to eliminate duplicate code.
1439 (names_notfound): Remove special case for Amiga.
1440
1441 2000-10-27 Paul Eggert <eggert@twinsun.com>
1442
1443 * src/misc.c (read_error_details, read_warn_details,
1444 read_fatal_details): Don't assume size_t is unsigned long.
1445
1446 * src/buffer.c (flush_read): If read_full_records_option, try to
1447 fill the input buffer, as --delete -f - needs this.
1448
1449 2000-10-24 Paul Eggert <eggert@twinsun.com>
1450
1451 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Port to autoconf 2.13.
1452
1453 * src/buffer.c (check_label_pattern):
1454 Make sure header name is a string before
1455 passing it to fnmatch.
1456 (init_volume_number): Check for global_volno overflow.
1457 (new_volume): Check for global_volno overflow.
1458
1459 * src/tar.c (decode_options):
1460 Check that volume label is not too long to overflow
1461 name in tar header block.
1462
1463 * Makefile.am (EXTRA_DIST): Remove rebox.el.
1464
1465 * configure.in (HAVE_DECL_STRERROR_R): Remove our handwritten code.
1466 (AC_FUNC_STRERROR_R): Use this instead.
1467
1468 2000-10-23 Paul Eggert <eggert@twinsun.com>
1469
1470 * src/extract.c: Include <time.h>, since we invoke "time".
1471
1472 * lib/prepargs.c (prepend_default_options):
1473 Don't use NULL, for portability.
1474
1475 * m4/fnmatch.m4: Add "working" to message.
1476
1477 * src/names.c: (_GNU_SOURCE): Remove; autoconf now does this.
1478 Include <hash.h>.
1479 (getpwuid, getgrgid): Declare only if system headers don't.
1480 (gid_to_gname): Don't invoke setgrent.
1481 (namelist): Now static, not global.
1482 (nametail): New var. All uses of namelast changed to use
1483 nametail, with one extra level of indirection.
1484 (name_gather): Use memcpy instead of strncpy + assignment of NUL.
1485 (name_match): Set nametail too, when setting namelist to null.
1486 (add_hierarchy_to_namelist): Change type of dir arg from char * to
1487 struct name *, so that we don't have to look up the name again
1488 here. Get change_dir from dir rather than as a separate arg. Add
1489 dirsize arg, and pass it along to get_directory_contents. Remove
1490 unnecessary check of directory type.
1491 (new_name): Do not append a slash if PATH already ends in one.
1492 (avoided_names, struct avoided_name): Remove.
1493 (avoided_name_table): New var, replacing avoided_names.
1494 (hash_avoided_name, compare_avoided_names): New function.
1495 (add_avoided_name, is_avoided_name): Use hash table rather than
1496 linked list.
1497
1498 * src/buffer.c (_GNU_SOURCE): Remove; autoconf now does this.
1499 (child_open_for_compress, child_open_for_uncompress,
1500 close_archive): Propagate any failure of the compression process
1501 back to "tar".
1502 (open_archive, flush_write, flush_read, close_archive): Do not
1503 allocate an array of size PATH_MAX, as PATH_MAX might be (size_t)
1504 -1. Instead, allocate an array with the size that's needed.
1505 (open_archive): Don't bother checking S_ISCHR of /dev/null.
1506 (backspace_output): Don't try to backspace past start of archive.
1507 (close_archive): Remove special case for DELETE_SUBCOMMAND.
1508
1509 * acconfig.h (_GNU_SOURCE, DEFAULT_ARCHIVE, DEFAULT_BLOCKING,
1510 DENSITY_LETTER, DEVICE_PREFIX, EMUL_OPEN3, HAVE_GETGRGID,
1511 HAVE_GETPWUID, HAVE_MKNOD, HAVE_RTAPELIB, HAVE_ST_FSTYPE_STRING,
1512 HAVE_UNION_WAIT, HAVE_UTIME_H, HAVE_VALLOC, MTIO_CHECK_FIELD, PACKAGE,
1513 PROTOTYPES, REMOTE_SHELL, STD_INC_PATH, VERSION, WITH_CATALOGS,
1514 WITH_DMALLOC, WITH_REGEX):
1515 Remove; now generated automatically.
1516
1517 * configure.in (_GNU_SOURCE): Define to empty, not 1, for
1518 compatibility for glibc fragments.
1519 (_GNU_SOURCE, HAVE_UTIME_H, MTIO_CHECK_FIELD,
1520 HAVE_ST_FSTYPE_STRING, HAVE_MKNOD, REMOTE_SHELL, DENSITY_LETTER,
1521 DEVICE_PREFIX, DEFAULT_ARCHIVE, DEFAULT_BLOCKING): Add comment so
1522 that we needn't put an entry into acconfig.h.
1523 (ALL_LINGUAS): Add da.
1524 (AC_C_BACKSLASH_A): Remove; jm_PREREQ_QUOTEARG now does this.
1525 (AC_CHECK_HEADERS): Add stdbool.h (for hash.h users), wctype.h
1526 (for strtol.c).
1527 (AC_MBSTATE_T): Add.
1528 (RMT): Append $(EXEEXT).
1529 (HAVE_GETGRGID, HAVE_GETPWUID, pe_AC_TYPE_SIGNED_CHAR): Remove.
1530 (HAVE_DECL_FREE, HAVE_DECL_GETGRGID, HAVE_DECL_GETPWUID,
1531 HAVE_DECL_GETENV, HAVE_DECL_MALLOC, HAVE_DECL_STRTOUL,
1532 HAVE_DECL_STRTOULL, HAVE_DECL_STRERROR_R): New macros.
1533 (jm_PREREQ_ADDEXT, jm_PREREQ_ERROR, jm_PREREQ_QUOTEARG): Add.
1534 (AC_REPLACE_FUNCS): Remove execlp; no longer needed.
1535 (AC_CHECK_FUNCS): Add clock_gettime; AC_SEARCH_LIBS wasn't enough.
1536 Remove mbrtowc; jm_PREREQ_QUOTEARG now does this.
1537 (EMUL_OPEN3): Remove; no longer needed.
1538 (DENSITY_LETTER, DEVICE_PREFIX): Simplify m4 quoting.
1539
1540 * m4/fnmatch.m4 (AC_FUNC_FNMATCH): Detect d*/*1 vs d/s/1 bug.
1541
1542 * src/common.h: Do not include basename.h.
1543 * src/rtapelib.c (base_name): Do not include basename.h;
1544 declare base_name instead.
1545
1546 * lib/basename.h, lib/execlp.c, lib/getpagesize.h, lib/mkdir.c:
1547 Remove these files.
1548 * lib/getstr.c, lib/getstr.h, lib/hash.h, lib/hash.h, lib/prepargs.c,
1549 lib/prepargs.h, lib/savedir.c, lib/savedir.h: New files.
1550 * lib/Makefile.am (EXTRA_DIST, noinst_HEADERS, libtar_a_SOURCES):
1551 Adjust to the above changes.
1552
1553 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove ../src/ansi2knr.
1554
1555 * src/open3.c: Remove.
1556
1557 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove ansi2knr.
1558 (tar_SOURCES): Remove open3.c.
1559 (INCLUDES): Remove -I.., as automake does that.
1560 (OMIT_DEPENDENCIES): ../lib/fnmatch.h -> fnmatch.h. Add localedir.h.
1561
1562 The following changes are to put LOCALEDIR into localedir.h instead
1563 of passing it on the command line.
1564 (DEFS): Remove.
1565 (DISTCLEANFILES): New macro.
1566 (localedir.h): New rule.
1567 (rmt.o tar.o): Now depend on localedir.h.
1568
1569 * tests/delete02.sh, tests/extrac04.sh: New files.
1570
1571 * tests/Makefile.am (AUTOMAKE_OPTIONS): Remove ansi2knr.
1572 (TESTS): Add extrac04.sh, and restore delete02.sh.
1573 (DEFS): Remove; LOCALEDIR is now done via localedir.h.
1574 (INCLUDES): Remove -I.. as automake does this now.
1575
1576 * src/rtapelib.c (rexec): Don't declare unless using it.
1577 (do_command): Simplify signal-handling code slightly.
1578
1579 * src/delete.c (blocks_needed): Remove. All uses changed to use
1580 blocking_factor - new_blocks.
1581 (acting_as_filter): New var.
1582 (write_record, delete_archive_members): Use acting_as_filter
1583 rather than archive == STDIN_FILENO to detect whether we're acting
1584 as a filter, as open can return STDIN_FILENO in some cases.
1585 (delete_archive_members): Ignore zero blocks if
1586 ignore_zeros_option is nonzero. Fix bug that messed up last
1587 output block: write_eot can't be used here, as it gets confused
1588 when the input is at end of file.
1589
1590 * src/compare.c (diff_archive): Do not impose an arbitrary limit on
1591 symbolic link contents length. Pass directory size to
1592 get_directory_contents.
1593
1594 * m4/decl.m4, m4/error.m4, m4/mbstate_t.m4, m4/prereq.m4,
1595 m4/strerror_r.m4: New files.
1596 * m4/signedchar.m4: Remove this file.
1597 * Makefile.am (ACINCLUDE_INPUTS): Adjust to above changes.
1598 * m4/Makefile.am (EXTRA_DIST): Likewise.
1599
1600 * Makefile.am (DISTCLEANFILES): Add intl/libintl.h.
1601
1602 * po/da.po: New translation file.
1603
1604 * src/mangle.c (extract_mangle):
1605 Fix diagnostic with wrong number of %s'es.
1606
1607 * lib/fnmatch.c (fnmatch):
1608 Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
1609 e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
1610
1611 * lib/full-write.c (full_write): Some buggy drivers return 0 when you
1612 fall off a device's end. Detect this.
1613
1614 * src/system.h (IN_CTYPE_DOMAIN): Renamed from CTYPE_DOMAIN. All
1615 uses changed.
1616 (open): Remove macro; we no longer support EMUL_OPEN3. Do not
1617 include <pathmax.h> and directory include files like <dirent.h>;
1618 no longer used. Include <savedir.h> instead.
1619 (closedir, signed_char): remove macro; no longer used.
1620 (bool, false, true): Include <stdbool.h> if you have the include
1621 file, otherwise define.
1622
1623 * src/misc.c:
1624 (is_dot_or_dotdot, closedir_error, closedir_warn, opendir_error,
1625 opendir_warn, readdir_error): Remove; no longer needed.
1626 (safer_rmdir): Strip leading ./ (or .// or ./// or ././ or etc.)
1627 before deciding whether we're trying to remove ".".
1628 (remove_any_file): Try unlink first if we are not root. Use
1629 savedir when recursively removing directories, to avoid exhausting
1630 file descriptors.
1631 (savedir_error, savedir_warn, symlink_error): New functions.
1632
1633 * src/list.c: (read_and): Do not invoke
1634 apply_nonancestor_delayed_set_stat; DO_SOMETHING is now
1635 responsible for that. Do not invoke apply_delayed_set_stat; our
1636 caller is now responsible for that.
1637 (read_header): Use signed char instead of signed_char. Prevent
1638 later references to current_header from mistakenly treating it as
1639 an old GNU header.
1640 (from_header): Quote invalid base-64 strings in diagnostics.
1641 (time_from_header): Do not warn about future timestamps in
1642 archive; check_time now does that.
1643 (print_header): Quote unknown file types.
1644 (skip_member): New function, replacing skip_extended_headers and
1645 now skipping the whole member instead of just the extended
1646 headers. All callers changed. This makes the code handle
1647 extended headers uniformly, and fixes some bugs.
1648
1649 * src/update.c (update_archive): Use skip_member.
1650
1651 * src/extract.c (we_are_root): Now global.
1652 (struct delayed_symlink): New type.
1653 (delayed_symlink_head): New var.
1654 (extr_init, fatal_exit): Invoke extract_finish on fatal errors,
1655 not apply_delayed_set_stat.
1656 (set_mode, set_stat): Pointer args are now const pointers.
1657 (check_time): New function.
1658 (set_stat): Warn if setting a file's timestamp to be the future.
1659 (make_directories): Do not save and restore errno.
1660 (maybe_recoverable): Set errno to ENOENT if we cannot make missing
1661 intermediate directories.
1662 (extract_archive): Invoke apply_nonancestor_delayed_set_stat here,
1663 not in caller. Extract potentially dangerous symbolic links more
1664 carefully, deferring their creation until the end, and using a
1665 regular file placeholder in the meantime. Do not remove trailing
1666 / and /. from file names. Do not bother checking for ".." when
1667 checking whether a directory loops back on itself, as loopbacks
1668 can occur with symlinks too. Also, in that case, do not bother
1669 saving and restoring errno; just set it to EEXIST.
1670 (apply_nonancestor_delayed_set_stat): A prefix is a potential
1671 ancestor if it ends in slash too (as well as ending in a char just
1672 before slash).
1673 (apply_delayed_set_stat): Remove.
1674 (apply_delayed_symlinks, extract_finish): New functions.
1675
1676 * doc/fdl.texi: New file.
1677 * doc/Makefile.am (EXTRA_DIST): Add fdl.texi.
1678 ($(srcdir)/tar.info): Add fdl.texi. Invoke makeinfo with --no-split.
1679 * doc/tar.texi: Add Free Documentation License. New section
1680 "Overwrite Old Files", and revamp that section to make it easier to
1681 follow. "tar" -> "GNU tar" where appropriate. Migrate getdate
1682 documentation into getdate.texi. Fix several minor typos. Describe
1683 TAR_OPTIONS. Describe incompatibility between incremental backups and
1684 --atime-preserve. Describe incompatibility between --verify and other
1685 options. Mention that tar normally removes symbolic links rather than
1686 following them, when extracting a file of the same name.
1687
1688 * THANKS: Add gpoul. Change skip's address.
1689
1690 * po/POTFILES.in: Add lib/human.c.
1691
1692 * src/common.h (namelist, namelast): Remove decls.
1693 (we_are_root, extract_finish, skip_member, savedir_error,
1694 savedir_warn, symlink_error, gnu_list_name): New decls.
1695 (apply_delayed_set_stat, apply_nonancestor_delayed_set_stat,
1696 skip_extended_headers, is_dot_or_dotdot, closedir_error,
1697 closedir_warn, opendir_error, opendir_warn, readdir_error,
1698 readdir_warn): Remove decls.
1699 (get_directory_contents): New off_t arg.
1700 (addname): Now returns struct name *.
1701
1702 * src/tar.h, tests/genfile.c: Fix comments.
1703
1704 * src/create.c: Include hash.h.
1705 (gnu_list_name): Remove decl.
1706 (struct link): Remove "next" member.
1707 (linklist): Remove.
1708 (start_header): Say "leading `FOO'" rather than "`FOO' prefix" for
1709 consistency with other diagnostics.
1710 (deal_with_sparse): Check for I/O error when closing the file.
1711 (create_archive): Do not allocate an array of size PATH_MAX, as
1712 PATH_MAX might be (size_t) -1. Instead, allocate an array with
1713 the size that's needed.
1714 (hash_link, compare_links): New functions.
1715 (dump_file): Do not exhaust open file descriptors when descending
1716 deeply into a directory, by using savedir rather than
1717 opendir/readdir. Do not zero-fill the name buffer unnecessarily.
1718 Hash the set of links already created, instead of using a linked
1719 list. Fix some bugs in outputting sparse files which caused the
1720 sparse tables to be incorrect. When a file unexpectedly shrinks,
1721 output zeros rather than garbage. Do not allocate an array of
1722 size PATH_MAX, as PATH_MAX might be (size_t) -1. Instead,
1723 allocate an array with the size that's needed.
1724
1725 * src/incremen.c: Include hash.h.
1726 (struct directory): Remove "next", "dir_text". Change "name" to
1727 be char[1] with struct hack, not const char *. Add "found".
1728 (directory_list): Remove. Replaced by directory_table.
1729 (directory_table): New var.
1730 (nfs_string): Renamed from nfs.
1731 (hash_directory, compare_directories): New functions.
1732 (note_directory): Now returns struct directory *. First arg is
1733 now const pointer. struct stat arg is now dev_t, ino_t, nfs.
1734 Remove text arg. New "found" arg, basically corresponding to the
1735 old text arg not being null. All callers changed.
1736 (note_directory, find_directory): Use hash table rather than
1737 linked list.
1738 (get_directory_contents): New arg "device". Use savedir to do the
1739 hard work. Save the nfs-ness of stat_data, since it might change
1740 under us. Use note_directory instead of find_directory to save
1741 some work. When adding an "A" record, do it with
1742 add_to_accumulator instead of cheating with strcat.
1743 (read_directory_file): Use "+" flag before device to indicate
1744 whether it was NFS. Fix typo in checking for strtoul error.
1745 (write_directory_file_entry): New function.
1746 (write_directory_file): Use it, and use the hash routines to
1747 traverse the directory table.
1748 (gnu_restore): Use savedir rather than opendir/readdir.
1749
1750 * src/tar.c: Include localedir.h, prepargs.h.
1751 (long_options): Now static.
1752 (long_options, usage, decode_options): -j is now short for
1753 --bzip2, and -I is now an alias for -T.
1754 (decode_options, main): argv is not const pointer now.
1755 (decode_options): Invoke prepend_default_options to support
1756 TAR_OPTIONS. In diagnostic, mention the string that was the
1757 invalid blocking factor, tape length, group, owner, or record
1758 size. --delete is no longer incompatible with -f -, undoing
1759 2000-01-07 change.
1760 (main): Invoke extract_finish at end of extraction.
1761
1762 * src/rmt.c: Include localedir.h.
1763 (main): Update copyright date to 2000.
1764
1765 * doc/getdate.texi: New file, taken from fileutils 4.0.27, with the
1766 following changes: Use @sc where appropriate. Document the ranges of
1767 supported times more precisely. Add Eggert to getdate authors.
1768 Document old Latin 12m/12pm tradition. Remove list of alphabetic time
1769 zone names, as it wasn't correct and people shouldn't be relying on it
1770 anyway. Relative items also account for non-DST adjustments. Fix
1771 some misspellings.
1772
1773 * lib/prepargs.c, lib/prepargs.h, tests/extrac04.sh: New file.
1774
1775 * tests/ignfail.sh: opendir -> savedir in diagnostics.
1776
1777 * tests/preset.in: Set LANGUAGE to the empty string, for some
1778 brain damaged host.
1779
1780 2000-10-20 Paul Eggert <eggert@twinsun.com>
1781
1782 * m4/fnmatch.m4: Mention the GNU C library.
1783
1784 2000-10-19 Paul Eggert <eggert@twinsun.com>
1785
1786 * m4/fnmatch.m4: Add a couple more test cases to catch bugs in
1787 glibc 2.1.95.
1788
1789 2000-10-17 Paul Eggert <eggert@twinsun.com>
1790
1791 * lib/human.c (<limits.h>): Do not include; human.h does it if needed.
1792 (CHAR_BIT): Remove.
1793
1794 * lib/human.h (<limits.h>): Include if HAVE_LIMITS_H.
1795 (CHAR_BIT): Define if not defined.
1796
1797 2000-09-09 Paul Eggert <eggert@twinsun.com>
1798
1799 * lib/quotearg.c: From fileutils: rename ISASCII to IN_CTYPE_DOMAIN.
1800
1801 2000-08-07 Paul Eggert <eggert@twinsun.com>
1802
1803 * lib/xmalloc.c: Memory exhausted -> memory exhausted
1804
1805 * lib/xalloc.h (xalloc_msg_memory_exhausted):
1806 change to array from char *.
1807
1808 2000-08-06 Paul Eggert <eggert@twinsun.com>
1809
1810 * m4/mbstate_t.m4: Define mbstate_t to be int, not char, for
1811 compatibility with glibc 2.1.3 strftime.c.
1812
1813 2000-07-31 Paul Eggert <eggert@twinsun.com>
1814
1815 * lib/quotearg.c (quotearg_n_options):
1816 Don't make the initial slot vector a constant,
1817 since it might get modified.
1818
1819 * lib/quotearg.c: Add support for more than one preallocated slot.
1820
1821 2000-07-30 Paul Eggert <eggert@twinsun.com>
1822
1823 * lib/quotearg.c (quotearg_n_options):
1824 Preallocate a slot 0 buffer, so that the caller
1825 can always quote one small component of a "memory exhausted" message
1826 in slot 0.
1827
1828 2000-07-23 Paul Eggert <eggert@twinsun.com>
1829
1830 * lib/quotearg.c:
1831 Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX), so that
1832 mbstate_t is always defined.
1833
1834 Do not inspect MB_LEN_MAX, since it's incorrectly defined to be 1 in
1835 some GCC installations, and this configuration error is likely to be
1836 common.
1837
1838 2000-07-22 Paul Eggert <eggert@twinsun.com>
1839
1840 * lib/quotearg.c:
1841 When the system forces us to redefine mbstate_t, shadow its mbsinit
1842 function. From Bruno Haible.
1843
1844 2000-07-14 Paul Eggert <eggert@twinsun.com>
1845
1846 * lib/xmalloc.c: Simplify exhausted message.
1847
1848 * lib/quotearg.h: Update copyright date; from Jim Meyering.
1849
1850 2000-07-13 Paul Eggert <eggert@twinsun.com>
1851
1852 * lib/quotearg.h (enum quoting style):
1853 New constant clocale_quoting_style.
1854
1855 * lib/quotearg.c:
1856 (quoting_style_args, quoting_style_vals, quotearg_buffer_restyled):
1857 Add support for clocale_quoting_style, undoing previous change to
1858 locale_quoting_style.
1859
1860 2000-07-10 Paul Eggert <eggert@twinsun.com>
1861
1862 * lib/quotearg.c:
1863 <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX,
1864 since otherwise we don't need it.
1865 (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
1866 since we don't do multibytes in that case.
1867 (quotearg_buffer_restyled): If a unibyte locale, don't bother to
1868 invoke multibyte primitives.
1869
1870 * m4/mbstate_t.m4 (AC_MBSTATE_T):
1871 Renamed from AC_MBSTATE_T_OBJECT. All uses changed.
1872 Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
1873 and mbstate_t, to a single-part test that simply defines mbstate_t.
1874
1875 * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
1876 Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
1877 to decide whether to define the BeOS workaround macro;
1878 this adjusts to the change to AC_MBSTATE_T.
1879
1880 * m4/strerror_r.m4: New file.
1881
1882 2000-07-05 Paul Eggert <eggert@twinsun.com>
1883
1884 * lib/quotearg.c: Use double-quote to quote.
1885
1886 * lib/quotearg.c (N_): New macro.
1887 (gettext_default): New function.
1888 (quotearg_buffer_restyled): Use gettext_default ("{LEFT QUOTATION MARK}",
1889 "\"") for left quote, and gettext_default ("{RIGHT QUOTATION MARK}", "\"")
1890 for right quote.
1891
1892 * lib/quotearg.c (struct quoting_options):
1893 Simplify quote_these_too dimension.
1894 From Bruno Haible <haible@clisp.cons.org>.
1895
1896 * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT):
1897 Test for mbstate_t only if the test
1898 for an object-type mbstate_t fails.
1899
1900 * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
1901
1902 2000-07-03 Paul Eggert <eggert@twinsun.com>
1903
1904 * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
1905 Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
1906
1907 * lib/quotearg.c (mbrtowc):
1908 Assign to *pwc, and return 1 only if result is nonzero.
1909 (iswprint): Define to ISPRINT if we are substituting our own mbrtowc.
1910
1911 2000-07-02 Paul Eggert <eggert@twinsun.com>
1912
1913 * lib/quotearg.c (mbstate_t):
1914 Do not define; it should be defined with AC_CHECK_TYPE.
1915
1916 2000-06-26 Paul Eggert <eggert@twinsun.com>
1917
1918 * m4/mbstate_t.m4: Include stdio.h before wchar.h, to work around
1919 a bug in glibc 2.1.3.
1920
1921 * lib/xmalloc.c: Fix inaccorate comment for xrealloc.
1922
1923 2000-06-19 Paul Eggert <eggert@twinsun.com>
1924
1925 * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
1926 inclusion of wctype.h to work around solaris2.6 namespace pollution.
1927 (ISPRINT): Likewise.
1928 Reported by Tom Tromey.
1929
1930 2000-06-15 Paul Eggert <eggert@twinsun.com>
1931
1932 * lib/human.c (adjust_value): New function.
1933 (human_readable_inexact): Apply rounding style even when printing
1934 approximate values.
1935
1936 * lib/human.c: Avoid shadowing warnings.
1937 From Jim Meyering.
1938
1939 2000-06-14 Paul Eggert <eggert@twinsun.com>
1940
1941 * lib/human.c (human_readable_inexact): Allow an input block size
1942 that is not a multiple of the output block size, and vice versa.
1943
1944 * lib/getdate.y (get_date): Apply relative times after time zone
1945 indicator, not before.
1946
1947 2000-05-31 Paul Eggert <eggert@twinsun.com>
1948
1949 * m4/largefile.m4: Rewrite so that we don't need to run getconf,
1950 and thus don't need AC_CANONICAL_HOST.
1951
1952 (AC_SYS_LARGEFILE_FLAGS, AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
1953 (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
1954 (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
1955 CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY. All uses
1956 changed. Instead of inspecting the output of getconf, try to
1957 compile the test program without and with the macro definition.
1958 (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check for
1959 getconf. Instead, check for the needed flags by compiling test
1960 programs.
1961
1962 * configure.in (AC_CANONICAL_HOST): Remove; the largefile stuff no
1963 longer needs it.
1964 * config.guess, config.sub: Remove these files, for similar reasons.
1965
1966 2000-05-03 Paul Eggert <eggert@twinsun.com>
1967
1968 * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to be
1969 500, instead of _GNU_SOURCE to be 1, to work around glibc 2.1.3
1970 bug. This avoids a clash when files like regex.c that define
1971 _GNU_SOURCE.
1972
1973 2000-05-02 Paul Eggert <eggert@twinsun.com>
1974
1975 * m4/largefile.m4 (AC_SYS_LARGEFILE):
1976 Define _GNU_SOURCE if this is needed to make
1977 ftello visible (e.g. glibc 2.1.3). Use compile-time test, rather than
1978 inspecting host and OS, to decide whether to define _LARGEFILE_SOURCE.
1979
1980 * lib/quotearg.c (mbrtowc, mbstat_t):
1981 Add definitions if !HAVE_MBSTATE_T_OBJECT.
1982 (<wctype.h>): Include if HAVE_WCTYPE_H.
1983 (iswprint): Define to 1 if we lack it
1984
1985 2000-04-18 Paul Eggert <eggert@twinsun.com>
1986
1987 * m4/mbstate_t.m4: New file.
1988
1989 2000-04-17 Bruno Haible <haible@clisp.cons.org>
1990
1991 * tests/ignfail.sh: Test for uid 0 along with user "root".
1992
1993 2000-04-05 Paul Eggert <eggert@twinsun.com>
1994
1995 * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS):
1996 Don't use -n32 on IRIX if the installer said
1997 otherwise.
1998
1999 2000-02-28 Paul Eggert <eggert@twinsun.com>
2000
2001 * lib/quotearg.c (ALERT_CHAR): New macro.
2002 (quotearg_buffer_restyled): Use it.
2003
2004 2000-02-23 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
2005
2006 * src/list.c (tartime): Fix off-by-one error when copying year if
2007 OLD_CTIME.
2008
2009 2000-02-18 Paul Eggert <eggert@twinsun.com>
2010
2011 * lib/getdate.y: Handle two-digit years with leading zeros correctly.
2012 (textint): New typedef.
2013 (parser_control): Changed from struct parser_control to typedef
2014 (for consistency). Member year changed from int to textint. All
2015 uses changed.
2016 (YYSTYPE): Removed; replaced by %union with int and textint
2017 members.
2018 (tID): Removed; not used.
2019 (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE,
2020 tMERIDIAN, tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER,
2021 tUNUMBER, tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
2022 (tSNUMBER, tUNUMBER): Now of type <textintval>.
2023 (date, number, to_year): Use width of number in digits, not its
2024 value, to determine whether it's a 2-digit year, or a 2-digit
2025 time.
2026 (yylex): Store number of digits of numeric tokens. Return '?' for
2027 unknown identifiers, rather than (unused) tID.
2028
2029 2000-01-16 Paul Eggert <eggert@twinsun.com>
2030
2031 * lib/quotearg.c (quotearg_buffer_restyled):
2032 Do not quote alert, backslash, formfeed,
2033 and vertical tab unnecessarily in shell quoting style.
2034
2035 2000-01-15 Paul Eggert <eggert@twinsun.com>
2036
2037 * m4/c-bs-a.m4:
2038 Change quoting to be compatible with future autoconf versions.
2039
2040 2000-01-11 Paul Eggert <eggert@twinsun.com>
2041
2042 * lib/exclude.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Remove unused macros.
2043
2044 2000-01-07 Paul Eggert <eggert@twinsun.com>
2045
2046 * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.17.
2047
2048 Fix bug with fnmatch.h dependency, as follows:
2049 * src/Makefile.am (OMIT_DEPENDENCIES): New macro.
2050 * lib/Makefile.am (OMIT_DEPENDENCIES): New macro.
2051
2052 * src/common.h (apply_nonancestor_delayed_set_stat):
2053 Renamed from apply_delayed_set_stat.
2054 (apply_delayed_set_stat, decode_mode, chmod_error_details,
2055 chown_error_details, close_warn, closedir_warn, mkdir_error,
2056 read_error_details, read_fatal_details, read_warn_details,
2057 seek_error_details, seek_warn_details, utime_error,
2058 write_error_details, write_fatal_details): New decls.
2059
2060 Make diagnostic messages more regular.
2061 * src/create.c (dump_file): Quote file names with colons if possible.
2062 * src/compare.c (diff_archive): Likewise.
2063 * src/extract.c (repair_delayed_set_stat, extract_archive): Likewise.
2064 * src/incremen.c (get_directory_contents, gnu_restore): Likewise.
2065 * src/mangle.c (extract_mangle): Likewise.
2066 * src/misc.c (call_arg_error, call_arg_fatal, call_arg_warn):
2067 Likewise.
2068 * src/buffer.c (archive_write_error, flush_archive, close_archive,
2069 new_volume, xclose):
2070 Use error message functions to report errors consistently.
2071 * src/compare.c (diff_sparse_files, diff_archive): Likewise.
2072 * src/create.c (finish_sparse_file, dump_file): Likewise.
2073 * src/extract.c (set_mode, set_stat, extract_sparse_file,
2074 extract_archive): Likewise.
2075 * src/list.c (list_archive): Likewise.
2076 * src/update.c (append_file): Likewise.
2077 * src/compare.c (diff_init, diff_sparse_files):
2078 Use xalloc_die to report memory exhaustion.
2079 * src/incremen.c (gnu_restore): Likewise.
2080 * src/list.c (read_header): Likewise.
2081 * src/mangle.c (extract_mangle): Likewise.
2082 * src/misc.c (maybe_backup_file): Likewise.
2083 * src/tar.c (decode_options): Likewise.
2084 * src/compare.c (read_and_process, fill_in_sparse_array,
2085 diff_sparse_files):
2086 Use consistent terminology for unexpected-EOF message.
2087 * src/extract.c (extract_sparse_file, extract_archive): Likewise.
2088 * src/list.c (list_archive, read_header, skip_file,
2089 skip_extended_headers): Likewise.
2090 * src/buffer.c (archive_write_error): Add noreturn attribute to decl.
2091 (xdup2): Regularize messages with rest of tar.
2092
2093 * src/buffer.c (flush_read): Don't read past EOF.
2094
2095 * src/extract.c (extr_init):
2096 If we run out of memory, invoke apply_delayed_set_stat.
2097 (prepare_to_extract): Don't complain if we can't remove ".".
2098 (apply_delayed_set_stat): New function.
2099 (apply_nonancestor_delayed_set_stat):
2100 Renamed from apply_delayed_set_stat. All uses changed.
2101 Don't remove head if it doesn't apply.
2102
2103 * src/create.c (find_new_file_size):
2104 Return size instead of storing through pointer.
2105 All callers changed.
2106 (deal_with_sparse): Don't keep reading after read errors.
2107 (finish_sparse_file): Just abort if there is an internal error.
2108 (dump_file): Fix typo: stat_warn and stat_error were interchanged.
2109 Don't restore access times on directories during incremental dumps
2110 until after dealing with the directory.
2111 If ignoring failed reads, count closedir, read, and unknown
2112 file errors as warnings, not errors.
2113 Fix buffer overrun problem when dumping sparse files.
2114
2115 * src/list.c (read_and):
2116 Invoke apply_nonancestor_delayed_set_stat on file names
2117 after handling them.
2118 (decode_mode): Remove; moved to misc.c.
2119
2120 * src/misc.c (safer_rmdir): New function.
2121 (remove_any_file): Use it to avoid problems with rmdir(".").
2122 (maybe_backup_file): Regularize diagnostics.
2123 (undo_backup_file): Likewise.
2124 (decode_mode): Moved here from list.c.
2125 (chmod_error_details, chown_error_details, close_fatal,
2126 close_warn, closedir_warn, mkdir_error, read_error_details,
2127 read_warn_details, read_fatal_details, seek_error_details,
2128 seek_warn_details, utime_error, write_error_details,
2129 write_fatal_details): New functions.
2130
2131 * src/delete.c (save_record): Remove static variable (now local).
2132 (move_archive): Don't position before start of archive.
2133 (write_record): Abort if count is zero at inopportune time.
2134 Plug memory leak.
2135
2136 * src/tar.c (decode_options): --delete and -f - are now
2137 incompatible, since we didn't have time to fix their bugs.
2138
2139 * tests/Makefile.am (TESTS): Remove delete02.sh.
2140 * tests/ignfail.sh: Adjust to new quoting scheme again.
2141
2142 2000-01-06 Paul Eggert <eggert@twinsun.com>
2143
2144 * lib/getdate.y: Sync tm_diff with the GNU C Library.
2145 (TM_YEAR_BASE): Renamed from TM_YEAR_ORIGIN. All uses changed.
2146 (tm_diff): Renamed from difftm. All uses changed.
2147 Replace body with that taken from GNU C Library 2.1.3pre1.
2148 (get_date): Prefer tm_gmtoff to tm_diff if available.
2149
2150 1999-12-29 "Melissa O'Neill" <oneill@cs.sfu.ca>
2151
2152 * tests/incremen.sh: Invoke stat on newly created file so that its
2153 ctime is updated on Nextstep.
2154
2155 1999-12-21 Machael Stone <mstone@cs.loyola.edu>
2156
2157 * lib/getdate.y (get_date):
2158 Fix typo when checking for time_t overflow in time zone calculations.
2159
2160 1999-12-13 Paul Eggert <eggert@twinsun.com>
2161
2162 * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.16.
2163
2164 * README-alpha: New file.
2165 * README: New sections for gzip and bzip2, Solaris.
2166 Remove mention of BACKLOG.
2167
2168 * configure.in (AC_C_BACKSLASH_A): Add.
2169 (AC_CHECK_HEADERS): Add wchar.h.
2170 (AC_CHECK_FUNCS): Add mbrtowc.
2171 (AC_FUNC_CLOSEDIR_VOID): Add.
2172
2173 * tests/Makefile.am (TESTS): Add delete02.sh.
2174 (POSTPONED_TESTS): Remove.
2175 (EXTRA_DIST): Remove $(POSTPONED_TESTS).
2176
2177 * tests/preset.in:
2178 Set LC_ALL rather than LANGUAGE, LANG, and LC_MESSAGES.
2179
2180 * tests/ignfail.sh (err): Adjust to new quoting scheme.
2181
2182 * tests/delete02.sh: Fix typo: need to list archive2, not archive.
2183
2184 * tests/extrac03.sh: Use -P option, so that .. doesn't get diagnosed.
2185
2186 * src/tar.c ("quotearg.h"): New include.
2187 (usage): Now has __attribute__ ((noreturn)).
2188 (confirm): Report errno if we can't open tty.
2189 (confirm, decode_options):
2190 Quote arbitrary strings in diagnostics.
2191 (OVERWRITE_OPTION): New constant.
2192 (long_options, usage, decode_options): New --overwrite option.
2193 (decode_options): --keep-old-files, --overwrite, and --unlink-first
2194 are now mutually exclusive.
2195 Don't assume that gettext preserves errno.
2196 (main): Set default quoting style to escape_quoting_style.
2197
2198 * src/update.c (<quotearg.h>): New include.
2199 (append_file):
2200 Don't assume that gettext preserves errno.
2201 Quote arbitrary strings in diagnostics.
2202 Check for close error.
2203
2204 * src/names.c (<quotearg.h>): New include.
2205 (name_init, name_next, name_close, names_notfound,
2206 collect_and_sort_names): Don't assume that gettext preserves
2207 errno. Quote arbitrary strings in diagnostics.
2208 (excluded_name): Fix typo that caused empty patterns to be
2209 mishandled.
2210
2211 * src/misc.c (<quotearg.h>): New include.
2212 (quote_copy_string): Quote only newline and backslash; the output is no
2213 longer meant for humans, and is locale-independent.
2214 (contains_dot_dot): New function.
2215 (remove_any_file): Don't use lstat; just rmdir the file and then use
2216 unlink if the rmdir fails because the file isn't a directory.
2217 Check for readdir and closedir errors.
2218 (maybe_backup_file): Report "stat" for stat errors.
2219 (maybe_backup_file, chdir_do):
2220 Quote arbitrary strings in diagnostics.
2221 (maybe_backup_file, undo_last_backup):
2222 Don't assume that gettext preserves errno.
2223 (call_arg_error, call_arg_fatal, call_arg_warn,
2224 chdir_fatal, close_error, closedir_error, exec_fatal, mkfifo_error,
2225 mknod_error, open_error, open_fatal, open_warn, opendir_error,
2226 opendir_warn, read_error, read_fatal, readdir_error, readdir_warn,
2227 readlink_error, readlink_warn, seek_error, seek_warn, stat_error,
2228 stat_warn, truncate_error, truncate_warn, unlink_error, waitpid_error,
2229 write_error, write_fatal, xfork, xpipe, quote_n, quote): New functions.
2230
2231 * src/system.h (__attribute__): New macro.
2232 (O_NDELAY, O_NONBLOCK, O_APPEND): Remove.
2233 (S_ISDOOR): New macro.
2234 (closedir): New macro, if CLOSEDIR_VOID.
2235
2236 * src/rmt.c, src/rtapelib.c (decode_oflag):
2237 O_APPEND might not be defined.
2238
2239 * src/list.c: (read_and, list_archive):
2240 Quote arbitrary strings in diagnostics.
2241 (from_header): Use locale_quoting_style to quote diagnostics.
2242 (print_header, print_for_mkdir): Quote with quotearg, not quote_copy_string.
2243
2244 * src/rmt.h (REM_BIAS): Increase from 128 to (1 << 30).
2245
2246 * src/Makefile.am: Use ## for copyright comments.
2247
2248 * src/extract.c (<quotearg.h>): New include.
2249 (enum permstatus): New enum.
2250 (struct delayed_set_stat): file_name is now at end of buffer, to avoid
2251 two mallocs. New members file_name_len, invert_permissions, permstatus.
2252 (extr_init): Remove hack that silently adjusted newdir_umask.
2253 (set_mode, set_stat): New args invert_permissions, permstatus, typeflag.
2254 Use these args to decide whether and how to set modes.
2255 (set_mode, set_stat, prepare_to_extract, extract_sparse_file, extract_archive):
2256 Don't assume that gettext preserves errno.
2257 (set_stat): Remove arg symlink_flag; subsumed by typeflag.
2258 (delay_set_stat, repair_delayed_set_stat): New functions.
2259 (make_directories): Avoid mkdir where last part of path is "..".
2260 Create a struct delayed_set_stat for each directory made.
2261 (prepare_to_extract): Renamed from unlink_destination, and
2262 return 0 immediately if to_stdout_option; all callers changed.
2263 (maybe_recoverable): New parameter interdir_made.
2264 Add support for --overwrite.
2265 (extract_sparse_file, extract_archive):
2266 Quote arbitrary strings in diagnostics.
2267 (extract_archive): By default, warn about ".." in member names, and skip them.
2268 Don't open files with O_NONBLOCK or O_APPEND.
2269 Open with O_TRUNC only if --overwrite; otherwise, use O_EXCL to avoid
2270 overwriting them. Pass only rwxrwxrwx permissions to `open' and `mkdir',
2271 minus the current umask. Keep track of intermediate directories made,
2272 to avoid looping when making x/../x when x doesn't exist; the
2273 earlier code solved this in a different way that didn't fit well
2274 into the new scheme. Don't extract permissions onto existing
2275 directories unless --overwrite is given. Do not add -wx------
2276 permissions to new directories permanently; just do it temporarily.
2277 Remove no-longer-needed hack with MSDOS and directory time stamps.
2278 (apply_delayed_set_stat): New argument specifies which directories to
2279 fix statuses of. Do not wait until the end of extraction to fix
2280 statuses; instead, fix a directory's status once we exit that directory.
2281 This requires less memory and does the right thing in some cases
2282 where the old method didn't.
2283 (fatal_exit): New function.
2284
2285 * src/incremen.c (<quotearg.h>): New include.
2286 (get_directory_contents, gnu_restore):
2287 Check for readdir and closedir errors.
2288 (get_directory_contents, read_directory_file, gnu_restore):
2289 Quote arbitrary strings in diagnostics.
2290 (get_directory_contents, read_directory_file, write_directory_file):
2291 Don't assume that gettext preserves errno.
2292
2293 * src/create.c (<quotearg.h>): New include.
2294 (start_header): Use `member names' to refer to archive member names, not
2295 `archive names'. Warn about `..' in member names.
2296 (finish_sparse_file, dump_file):
2297 Quote arbitrary strings in diagnostics.
2298 (finish_sparse_file, dump_file):
2299 Don't assume that gettext preserves errno.
2300 (dump_file): Don't use `access' to determine whether a directory is readable;
2301 this isn't reliable if tar is setuid. Use `opendir' instead.
2302 Check for readdir and closedir failures.
2303 Don't dump sockets as if they were fifos; just warn and skip.
2304
2305 * src/delete.c (move_archive):
2306 Don't report fatal error merely because sizes don't fit
2307 into struct mtop values; fall back on lseek instead.
2308 Say `Cannot' uniformly, instead of `Could not' sometimes and `Cannot' others.
2309 Say `reposition' instead of `re-position'.
2310 (delete_archive_members):
2311 Set archive to STDOUT_FILENO before outputting trailing buffer.
2312
2313 * src/compare.c (<quotearg.h>): New include.
2314 (diff_init): Use `Cannot' uniformly, instead of `Could not' sometimes
2315 and `Cannot' others.
2316 (report_difference, diff_archive):
2317 Quote arbitrary strings in diagnostics.
2318 (process_rawdata, diff_sparse_files, get_stat_data, diff_archive, seek_warn):
2319 Don't assume that gettext preserves errno.
2320 (diff_archive): Don't open regular files with O_NONBLOCK.
2321 Preserve access times of files if --atime.
2322
2323 * src/common.h (FATAL_ERROR): Use new fatal_exit function to exit.
2324 (FATAL_ERROR, USAGE): Don't return 0.
2325 (enum old files): New enum.
2326 (old_files_option): New variable, replacing keep_old_files_option and
2327 unlink_first_option.
2328 (apply_delayed_set_stat): Now takes char const * param.
2329 (fatal_exit, contains_dot_dot, chdir_fatal, close_error,
2330 closedir_error, exec_fatal, mkfifo_error, mknod_error, open_error,
2331 open_fatal, open_warn, opendir_error, opendir_warn, read_error,
2332 read_fatal, readdir_error, readdir_warn, readlink_error,
2333 readlink_warn, seek_error, seek_warn, stat_error, stat_warn,
2334 truncate_error, truncate_warn, unlink_error, waitpid_error,
2335 write_error, write_fatal, xfork, xpipe, quote, quote_n): New decls.
2336
2337 * src/buffer.c:
2338 (xclose, xdup2, child_open_for_compress, child_open_for_uncompress,
2339 archive_write_error, archive_read_error, flush_archive, close_archive,
2340 init_volume_number, new_volume):
2341 Don't assume that gettext preserves errno.
2342
2343 (xdup2): Don't report errno if dup returns an unexpected nonnegative value.
2344 (open_archive): Reject multivolume verify attempts a bit earlier.
2345 Rename local variable `access', in case it's defined by system header.
2346
2347 (open_archive, backspace_output): Use `Cannot' uniformly, instead of
2348 `Could not' sometimes and `Cannot' others.
2349
2350 (open_archive, flush_read, flush_archive, close_archive, new_volume):
2351 Quote arbitrary strings in diagnostics.
2352
2353 (read_error): Set archive to STDOUT_FILENO temporarily when writing
2354 archive buffer.
2355
2356 (init_volume_number): Check for input and output errors in volno_file.
2357
2358 (new_volume): Use new fatal_exit function to exit, and new xfork
2359 function to fork.
2360
2361 * m4/Makefile.am (EXTRA_DIST): Add c-bs-a.m4.
2362
2363 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/c-bs-a.m4.
2364
2365 * doc/tar.texi: Add --overwrite.
2366 --absolute-names rejects ".." in names.
2367
2368 * lib/quotearg.c: Add support for multibyte characters.
2369 (ISGRAPH): Remove.
2370 (ISPRINT): New macro.
2371 (<wchar.h>): Include if HAVE_MBRTOWC && HAVE_WCHAR_H.
2372 (isprint, mbrtowc, mbsinit, mbstate_t): New macros,
2373 defined if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
2374 (quotearg_buffer_restyled): New function, with most of the old
2375 quotearg_buffer's contents.
2376 Major rewrite to support multibyte characters.
2377 (quotearg_buffer): Now just calls quotearg_buffer_restyled.
2378
2379 * m4/c-bs-a.m4: New file.
2380
2381 * lib/Makefile.am: Use ## for copyright notice.
2382
2383 * scripts/Makefile.am: Use ## on copyright notice.
2384
2385 * doc/Makefile.am:
2386 ($(srcdir)/tar.info, tar.dvi): We now use texinfo 4.0.
2387
2388 1999-12-05 Paul Eggert <eggert@twinsun.com>
2389
2390 * doc/ChangeLog, lib/ChangeLog, scripts/ChangeLog,
2391 src/ChangeLog, tests/ChangeLog: Remove these files.
2392 * ChangeLog.1: New file, incorporating the above files, plus old
2393 ChangeLog entries.
2394 * Makefile.am (EXTRA_DIST): Add ChangeLog.1.
2395
2396 1999-12-05 Dale Worley <worley@ariadne.com>
2397
2398 * src/compare.c (<utime.h>, struct utimbuf): Add.
2399 (diff_archive): Restore access times if --atime.
2400 * doc/tar.texi: Explain that --atime also preserves modification time.
2401
2402 1999-12-04 Gerhard Poul <gpoul@gnu.org>
2403
2404 * ABOUT-NLS: Update to latest version from ftp.gnu.org.
2405 * BACKLOG, TODO: Remove.
2406 * Makefile.am (all-local, BABYL, dist-zoo, id, ID): Remove.
2407 * README: Bring up to date.
2408
2409 1999-12-03 Paul Eggert <eggert@twinsun.com>
2410
2411 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.15.
2412
2413 * src/compare.c (diff_archive):
2414 Do not set errno to EPIPE; we no longer use perror.
2415
2416 * src/create.c (dump_file):
2417 If a parent directory said that a file should be there but it is
2418 absent, diagnose it as being removed in the meantime.
2419 Do not pass meaningless errno to ERROR when reporting that the
2420 file changed as we read it.
2421 Report that a file changed if its ctime changes; this is more
2422 sensitive than mtime+size, and more accurate.
2423
2424 * src/incremen.c (enum children): New type.
2425 (struct directory): Change old char allnew member to new enum children
2426 children member.
2427 All uses changed.
2428 (get_directory_contents): When doing an incremental dump that does
2429 not cross filesystem boundaries, dump the mount points, even though
2430 they are in a different filesystem. This is for convenience when
2431 restoring, and for consistency with non-incremental dumps.
2432 This requires a 3-way flag for keeping track of which children we want,
2433 so we use enum children rather than boolean.
2434
2435 * src/open3.c (modes): Remove.
2436 (open3): Remove unportable assumptions about flag encodings.
2437 Use `stat' instead of `access' for testing file existence,
2438 to avoid problems with setuid programs.
2439
2440 * src/names.c (name_next): If file names are given both in the
2441 command line (e.g. via -C) and in a file (via -T), do not
2442 ignore the command-line names.
2443
2444 * m4/uintmax_t.m4: Backport to autoconf 2.13.
2445
2446 * doc/tar.texi: Clarify getdate authorship.
2447
2448 1999-11-23 Paul Eggert <eggert@twinsun.com>
2449
2450 * lib/Makefile.am (DISTCLEANFILES): New macro.
2451
2452 * configure.in (tar_fnmatch_hin):
2453 Remove; it runs afoul of a bug in autoconf 2.13.
2454 Instead, always link fnmatch.h to some file, even if it's a throwaway.
2455
2456 1999-11-19 Paul Eggert <eggert@twinsun.com>
2457
2458 * m4/largefile.m4: Update serial.
2459
2460 1999-11-18 Paul Eggert <eggert@twinsun.com>
2461
2462 * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a bug in
2463 the QNX shell, which doesn't propagate exit status of failed
2464 commands inside shell assignments.
2465
2466 1999-11-07 Paul Eggert <eggert@twinsun.com>
2467
2468 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.14.
2469
2470 * configure.in (AC_PREREQ): Bump to 2.13.
2471 (ALL_LINGUAS): Add pt_BR, ja.
2472 (AC_FUNC_FNMATCH): Remove lib/funmatch.h before invoking, not after.
2473 (tar_cv_path_RSH): Prefer a non-symlink rsh to a symlink one,
2474 for AIX crossbuilds.
2475
2476 * doc/tar.texi: New node create options for --ignore-failed-read.
2477 Remove unused version control symbols.
2478 Modernize texinfo usage.
2479
2480 * src/tar.c (usage): Add examples.
2481
2482 * m4/fnmatch.m4 (AC_FUNC_FNMATCH):
2483 Include fnmatch.h when testing fnmatch.
2484
2485 * src/common.h (collect_and_sort_names): New decl.
2486
2487 * src/list.c (from_header):
2488 Handle 32-bit two's complement negative time stamps
2489 even if the leading octal digit is 2 or 3.
2490
2491 * src/extract.c (set_stat): Remove duplicate code.
2492
2493 * src/create.c (to_chars): Remove trailing newline from warning.
2494 (dump_file): Ignore doors.
2495 (finish_header): Report block numbers with origin 0, not origin 1.
2496
2497 * src/rmt.c: Include getopt.h.
2498 (long_opts): New constant.
2499 (usage): New function.
2500 (main): Implement --help and --version.
2501 Output usage message if arguments are bad.
2502
2503 1999-10-10 Paul Eggert <eggert@twinsun.com>
2504
2505 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.13.
2506
2507 * README: Remove --with-dmalloc.
2508 Add --disable-largefile.
2509 Remove old NeXT dirent problems, or AIX valloc problems.
2510 Remove old union wait advice, and old %lld advice.
2511 Remove advice about FreeBSD 2.1.7, ISC 4.1mu, Ultrix `make'.
2512
2513 * doc/tar.texi: Clarify documentation for portable file names.
2514
2515 * configure.in (AM_WITH_DMALLOC): Remove.
2516 (ALL_LINGUAS): Add ja.
2517
2518 * src/tar.c (decode_options):
2519 Invalid dates are now treated as (time_t) -1.
2520 Redo version message to conform to GNU standards.
2521
2522 * src/create.c (dump_file):
2523 Fix typo: last two args to dump_file were interchanged.
2524 * src/update.c (update_archive): Likewise.
2525
2526 * src/common.h (tartime): New decl.
2527
2528 * src/list.c (tartime): Now extern.
2529 (read_and): Invalid headers cause errors, not warnings.
2530
2531 1999-10-03 Paul Eggert <eggert@twinsun.com>
2532
2533 * lib/getdate.y (__attribute__):
2534 Don't use if GCC claims to be before 2.8; this is
2535 needed for OPENStep 4.2 cc. Also, don't use if strict ANSI.
2536
2537 1999-09-25 Paul Eggert <eggert@twinsun.com>
2538
2539 * lib/fnmatch.c, lib/fnmatch.hin: Merge changes from latest glibc.
2540 * lib/getopt.c, lib/getopt.h, lib/getopt1.c: Likewise.
2541
2542 * tests/incremen.sh: Add yet another sleep.
2543
2544 1999-09-24 Paul Eggert <eggert@twinsun.com>
2545
2546 * NEWS: A read error now causes a nonzero exit status.
2547
2548 * src/create.c (to_chars): Fix base-256 output.
2549
2550 * src/buffer.c (write_error):
2551 Read error is an error, not just a warning.
2552
2553 1999-09-24 Paul Eggert <eggert@twinsun.com>
2554
2555 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.12.
2556
2557 * src/tar.c (<time.h>): Include.
2558 (time): Declare if not defined.
2559 (confirm): Don't read past EOF.
2560 (long_options, usage): Add --no-same-owner, --no-same-permissions.
2561 (main): Use clock_gettime if available.
2562
2563 * tests/Makefile.am (TESTS): Add incremen.sh
2564 (INCLUDES): Add -I../lib, for fnmatch.h.
2565
2566 * src/update.c (update_archive):
2567 Remove call to name_expand; had no effect.
2568 Use chdir_do to change into directory.
2569 Use deref_stat instead of stat.
2570 Use add_avoided_name to mark names to be avoided; the old method of
2571 setting a bit with the name caused all descendants of that name to
2572 be avoided, in some circumstances.
2573
2574 * tests/incremen.sh: Remove unnecessary sleeps.
2575
2576 * src/names.c (name_next): Go back to using plain chdir.
2577 (name_gather): Use chdir_arg to keep track of arguments to chdir.
2578 (addname): Likewise.
2579 (name_match): Use chdir_do to act on chdir args.
2580 (merge_sort): Moved here from incremen.c.
2581 (compare_names, add_hierarchy_to_namelist, collect_and_sort_names):
2582 Likewise.
2583 (name_expand): Remove.
2584 (name_from_list): Skip fake names.
2585 Use chdir_do to act on chdir args.
2586 (struct avoided_name): New struct.
2587 (avoided_names): New var.
2588 (add_avoided_name, is_avoided_name): New functions.
2589
2590 * src/system.h (stat, lstat): Define in terms of statx on
2591 STX_HIDDEN && !_LARGE_FILES /* AIX */ hosts.
2592 (UCHAR_MAX): New macro.
2593 (TYPE_MAXIMUM): Cast to arg type, for types narrow than int.
2594
2595 * m4/largefile.m4: Work around GCC 2.95.1 bug with HP-UX 10.20.
2596
2597 * src/incremen.c (<time.h>): Remove include; no longer used.
2598 (time): Remove decl.
2599 (time_now): Remove.
2600 (get_directory_contents): Use deref_stat.
2601 Consider a subdirectory to be all new only if
2602 listed_incremental_option or if it its timestamp is newer than the
2603 cutoff.
2604 (add_hierarchy_to_namelist, merge_sort): Move to names.c.
2605 (read_directory_file): Now extern. Do not set time_now.
2606 (write_directory_file): Renamed from write_dir_file.
2607 Use start_time instead of time_now.
2608 (compare_names, collect_and_sort_names): Move to names.c.
2609
2610 * src/mangle.c (<time.h>): Remove; not used.
2611 (time): Do not declare.
2612
2613 * src/misc.c (chdir_from_initial_wd): Remove.
2614 (deref_stat): New function.
2615 (struct wd): New struct.
2616 (wd, wds, wd_alloc): New variables.
2617 (chdir_arg, chdir_do): New function.
2618
2619 * src/compare.c (get_stat_data): Use deref_stat.
2620
2621 * src/common.h (name_expand): Remove.
2622
2623 * src/list.c (time): Declare if not defined.
2624 (base_64_digits): Moved here from create.c.
2625 (base64_map): Use UCHAR_MAX for size, not less-clear (unsigned char)
2626 -1.
2627 (read_and): Don't get time from header unless we need it now;
2628 as getting time can cause duplicate diagnostics if bogus.
2629 Remove "Hmm, " from diagnostic.
2630 Use "Skipping to next header" uniformly.
2631 (from_header): Renamed from from_chars. All uses changed.
2632 Allow different forms for unportable 2's complement numbers.
2633 Don't check for extended forms when parsing checksums.
2634 Parse base-256 output.
2635 (gid_from_header): Renamed from gid_from_chars. All uses changed.
2636 (major_from_header): Renamed from major_from_chars. All uses changed.
2637 (minor_from_header): Renamed from minor_from_chars. All uses changed.
2638 (mode_from_header): Renamed from mode_from_chars. All uses changed.
2639 (off_from_header): Renamed from off_from_chars. All uses changed.
2640 (size_from_header): Renamed from size_from_chars. All uses changed.
2641 (time_from_header): Renamed from time_from_chars. All uses changed.
2642 Warn about future timestamps.
2643 (uid_from_header): Renamed from uid_from_chars. All uses changed.
2644 (uintmax_from_header): Renamed from uintmax_from_chars.
2645 All uses changed.
2646 (tartime): New function, incorporating isotime.
2647 (isotime): Delete.
2648 (print_header): Use tartime.
2649
2650 * src/create.c (to_chars): Fix typo in decl.
2651 Don't assign through char const *.
2652 Rename name_expand back to collect_and_sort_names.
2653
2654 * src/extract.c (<time.h>): No need to include.
2655 (time): No need to declare.
2656 (now): Remove variable.
2657 (extr_init): Don't initialize `now'.
2658 Increment same_permissions_option and same_owner_option if we_are_root
2659 is nonzero; this supports the new --no-same-owner option.
2660 (set_stat): Use start_time instead of `now'.
2661
2662 * src/create.c (struct link): Remove unused linkcount member.
2663 (base_64_digits): Move to list.c.
2664 (base_8_digits): Remove.
2665 (to_octal): New function, with some of old contents of to_base.
2666 (to_base): Remove.
2667 (to_base256): New function.
2668 (to_chars): Use base 256, not base 64, for huge values.
2669 (mode_to_chars): Don't use two's complement in GNU format or POSIX
2670 format.
2671 (dump_file): Interchange last two arguments. If TOP_LEVEL is negative,
2672 it means we have an incremental dump where we don't know whether this
2673 is a top-level call.
2674 Use deref_stat instead of statx / stat / lstat.
2675 Cast result of alloca.
2676 Check for dates if 0 < top_level, not if listed_incremental_option.
2677 Move multiple-link check after directory check.
2678 Do not dump avoided names.
2679 Dump hard links to symbolic names as links, not as separate
2680 symbolic links.
2681 start_header cannot return a null pointer, so don't test for it.
2682 Likewise for find_next_block.
2683
2684 * src/buffer.c, src/common.h (<human.h>): Include.
2685 (read_error): Read error is an error, not just a warning.
2686 (print_total_written): Also print human-readable byte count, and
2687 bytes/s.
2688 (open_archive, flush_write): Use start_time, not current time.
2689 (flush_read): Report about garbage bytes ignored at end of archive,
2690 but act on non-garbage bytes (instead of ignoring them).
2691 (new_volume): Use WARN for warnings.
2692
2693 * doc/Makefile.am:
2694 ($(srcdir)/tar.info): Add -I$(srcdir) so that subdir builds work.
2695
2696 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/fnmatch.m4.
2697
2698 * m4/Makefile.am (EXTRA_DIST): Add fnmatch.m4.
2699
2700 * lib/Makefile.am (noinst_HEADERS):
2701 Rename fnmatch.h to fnmatch.hin; add human.h.
2702 (libtar_a_SOURCES): Add human.c, xstrtoul.c.
2703 (INCLUDES): Remove -I.. -I$(srcdir) -- automake adds this for us.
2704
2705 * src/Makefile.am (rmt_LDADD, tar_LDADD): New macros.
2706
2707 * lib/fnmatch.c (strchrnul):
2708 Define to __strchrnul if _LIBC, to our own replacement otherwise.
2709 Do not define if !_LIBC and if it already exists.
2710 (internal_fnmatch): Use it.
2711
2712 * configure.in (tar_LDADD): New variable, used only when linking tar.
2713 (rmt_LDADD): Similarly, for rmt.
2714 (AC_FUNC_FNMATCH): Link fnnmatch.hin to fnmatch.h if we're using our
2715 fnmatch.c; otherwise, use the system fnmatch.h.
2716
2717 * doc/tar.texi: Add --no-same-owner, --no-same-permissions.
2718 Modernize sample backup script.
2719
2720 * THANKS: Martin Goik's email address has changed.
2721
2722 * m4/fnmatch.m4: New file.
2723
2724 1999-09-03 Paul Eggert <eggert@twinsun.com>
2725
2726 * lib/lchown.h (ENOSYS): Don't use ENOMSG; it's not in NeXTStep3.3.
2727 Use EINVAL instead.
2728
2729 1999-08-29 Paul Eggert <eggert@twinsun.com>
2730
2731 * lib/getdate.y (get_date):
2732 Rename outermost local `probe' to `quarter'.
2733 Rename latter local `tm' to probe_tm.
2734 From: Jim Meyering <meyering@ascend.com>
2735 Message-ID: <uryn1vafyyc.fsf@ixi.eng.ascend.com>
2736
2737 1999-08-28 Paul Eggert <eggert@twinsun.com>
2738
2739 * lib/getdate.y (PC): New macro; use it when possible.
2740 (number): Handle `Nov 11 1996' example correctly.
2741 See Risks Digest 20.55 (1999-08-27)
2742 http://catless.ncl.ac.uk/Risks/20.55.html#subj18
2743
2744 1999-08-23 Paul Eggert <eggert@twinsun.com>
2745
2746 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.11.
2747
2748 Remove minor cases of lint from many source files: this includes
2749 unnecessary casts, uses of NULL, etc.
2750
2751 * configure.in (AC_PROG_YACC): Remove.
2752 (YACC): Always use bison.
2753 (AC_STRUCT_TIMEZONE): Add.
2754 (AC_REPLACE_FUNCS): Add strcasecmp, strncasecmp.
2755
2756 * doc/tar.texi: --bzip2 is now -I. Remove obsolete time zone info.
2757 Fix spelling.
2758
2759 * lib/Makefile.am (EXTRA_DIST): Add strcasecmp.c, strncasecmp.c.
2760 ($(srcdir)/getdate.c): Rename y.tab.c to getdate.c only if successful.
2761
2762 * lib/strcasecmp.c, lib/strncasecmp.c: New files.
2763
2764 * src/common.h (merge_sort): Remove decl; no longer exported.
2765
2766 * src/system.h (voidstar): Remove.
2767 (memcpy, memcmp): Cast args.
2768 ("xalloc.h"): Add include.
2769 (xmalloc, xrealloc): Remove decl.
2770
2771 * src/mangle.c (time): Do not declare if defined.
2772 (first_mangle, mangled_num): Remove.
2773
2774 * src/list.c (from_chars): Report out-of-range values more precisely.
2775 (off_from_chars): Do not allow negative offsets.
2776 (uid_from_chars): Allow negative uids.
2777
2778 * src/create.c (linklist): Now static.
2779 (to_chars): Fix wording of message to match from_chars.
2780
2781 * src/misc.c (merge_sort): Move to incremen.c.
2782 * src/incremen.c (merge_sort): Move here from misc.c; now static.
2783 It's too painful to make it both generic and portable.
2784 (read_directory_file): "timestamp" -> "time stamp" in messages.
2785
2786 * src/tar.c (long_options, usage, main): -y is now -I (for --bzip).
2787 (usage): Fix misspelling.
2788 (OPTION_STRING): -y is now -I.
2789 (decode_options): Use -1, not EOF, for getopt_long result.
2790 Fix typo when invoking xstrtoumax: look for LONGINT_OK, not LONG_MAX.
2791 Handle operands after any "--" argument.
2792 (main): Report any output errors.
2793
2794 * src/rmt.c (main): status is ssize_t, not long.
2795
2796 * src/names.c (name_gather): Handle trailing -C option correctly.
2797 (addname): use memcpy, not strncpy, to copy a string of known length.
2798 (name_match): Handle trailing -C option correctly.
2799 Propagate -C option to following files.
2800 (name_match, name_scan): Remove redundant matching code.
2801
2802 * src/buffer.c (open_archive): Use American spelling in diagnostic.
2803
2804 * lib/getdate.y: Major rewrite. Add copyright notice.
2805 (<stdio.h>): Include only if testing.
2806 (ISUPPER): Remove.
2807 (ISLOWER): New macro.
2808 (<string.h>): Include if HAVE_STRING_H, not USG.
2809 (bcopy): Remove.
2810 (yymaxdepth, ..., yycheck): Don't bother to redefine, since we assume
2811 bison.
2812 (EPOCH_YEAR): Renamed from EPOCH.
2813 (table): Renamed from TABLE.
2814 (meridian): Now an anonymous enum.
2815 (struct parser_control): New type.
2816 (YYLEX_PARAM, YYPARSE_PARAM, YYSTYPE): New macros.
2817 (yyInput, ..., yyRelYear): Migrated into struct parser_control.
2818 (%pure_parser): Added, so that the parser is pure.
2819 (%union): Removed; the type is now just plain int.
2820 All %type directives removed.
2821 (tLOCAL_ZONE): New %token.
2822 (month_day_table): Renamed from MonthDayTable.
2823 (gmtime, localtime, mktime, time): Declare only if not defined.
2824 (meridian_table): New table.
2825 (dst_table): New table.
2826 (units_table): renamed from UnitsTable.
2827 (relative_time_table): Renamed from OtherTable.
2828 (time_zone_table): Renamed from TimezoneTable. Modernized.
2829 (military_table): Renamed from MilitaryTable.
2830 (to_hour): Renamed from ToHour.
2831 (to_year): Renamed from ToYear.
2832 (lookup_zone): New function.
2833 (LookupWord): Renamed from lookup_word. Use lookup_zone for time
2834 zones.
2835 (yylex): Now reentrant. All callers changed.
2836 (get_date): Add support for local time zone abbreviations.
2837 Make it reentrant.
2838
2839 1999-08-20 Paul Eggert <eggert@twinsun.com>
2840
2841 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.10.
2842
2843 * src/create.c (to_chars): Generate GNU base-64 representation
2844 if we are generating an old or new GNU format tar file for a
2845 number that can't be represented with the POSIX format.
2846
2847 * configure.in (AC_CHECK_FUNCS): Add fchdir.
2848 (AM_FUNC_GETLINE): Add.
2849 (LIBOBJS): Add getline.o to workaround comment.
2850 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/getline.m4.
2851 * m4/Makefile.am (EXTRA_DIST): Add getline.m4.
2852 * lib/Makefile.am (noinst_HEADERS): Add getline.h, save-cwd.h.
2853 (libtar_a_SOURCES): Add save-cwd.c, xgetcwd.c.
2854 * lib/getline.c, lib/getline.h, lib/save-cwd.c,
2855 lib/save-cwd.h, m4/getline.m4: New files.
2856
2857 * src/misc.c (<save-cwd.h>): Include.
2858 (chdir_from_initial_wd): New function.
2859
2860 * src/names.c (name_next): Use chdir_from_initial_wd, not chdir.
2861 (name_gather): Handle `-C x -C y' correctly.
2862 Do not rely on addname to handle -C.
2863 (addname): New CHANGE_DIR parameter. All callers changed.
2864 Remove ugly calls to getcwd; no longer needed.
2865 (name_match, name_from_list): Use chdir_from_initial_wd, not chdir.
2866
2867 * src/incremen.c (listed_incremental_stream): New var.
2868 (read_directory_file): Remove arbitrary limits on file name length.
2869 Do not attempt to get the working directory; we can bypass this
2870 on fchdir hosts. Open the listed_incremental_option file for both
2871 read and write instead of opening it twice. Check for I/O errors
2872 when doing I/O to this file. Check for invalid data in the file,
2873 and report line numbers of invalid data.
2874 (write_dir_file): Likewise.
2875 (collect_and_sort_names): Use chdir_from_initial_wd, not chdir.
2876 Do not invoke write_dir_file; that's our caller's responsibility.
2877
2878 * src/list.c (max): New macro.
2879 (isotime): Now takes time_t, not time_t *. Report the decimal values
2880 of times that can't be broken down.
2881 (print_header): Don't assume that major and minor device numbers can
2882 fit into uintmax_t.
2883
2884 * src/common.h (struct name): change_dir is now char const *.
2885 (write_directory_file): Remove unused decl.
2886 (STRINGIFY_BIGINT): Assume b always points to UINTMAX_STRSIZE_BOUND
2887 chars; the old `sizeof (b)' broke when b was a pointer not an array.
2888 (chdir_from_initial_wd): New decl.
2889 (addname): New 2nd arg.
2890
2891 * THANKS: Torsten Lull -> Catrin Urbanneck
2892
2893 1999-08-18 Paul Eggert <eggert@twinsun.com>
2894
2895 * configure.in (HAVE_GETHOSTENT, HAVE_SETSOCKOPT):
2896 Don't depend on ac_cv_func variables.
2897 From Albert Chin-A-Young <china@thewrittenword.com>.
2898
2899 1999-08-18 Paul Eggert <eggert@twinsun.com>
2900
2901 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.9
2902
2903 * m4/signedchar.m4: New file.
2904 * configure.in (pe_AC_TYPE_SIGNED_CHAR): Add.
2905 * src/system.h (signed_char): New macro.
2906 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/signedchar.m4.
2907 * m4/Makefile.am (EXTRA_DIST): Add signedchar.m4.
2908
2909 * src/create.c (write_eot): Write at least two zero blocks.
2910
2911 * src/extract.c (extract_archive): Fix sparse array bug:
2912 we did not find end of array correctly.
2913
2914 * src/compare.c: (fill_in_sparse_array, diff_sparse_files):
2915 Don't assume find_next_block yields nonnull.
2916 * src/extract.c (extract_sparse_file, extract_archive): Likewise.
2917 * src/list.c (skip_extended_headers): Likewise.
2918
2919 * src/list.c (read_and, list_archive): Simplify code.
2920 (read_header): Fix computation of signed checksums on machines where
2921 char is unsigned.
2922 Do not consider a block to be zero unless all its bytes are zero,
2923 even the checksum bytes. Do not attempt to parse the checksum of
2924 a zero block. Fix memory leak with long names and links.
2925 (from_chars): Accommodate a buggy tar that outputs leading NUL
2926 if the previous field overflows.
2927
2928 * src/misc.c (quote_copy_string): Generate \177 for '\177', not
2929 \?, for portability to non-ASCII hosts.
2930
2931 1999-08-16 Paul Eggert <eggert@twinsun.com>
2932
2933 * configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.8.
2934
2935 * src/extract.c (make_directories): Do not chown intermediate
2936 directories, even if we are root.
2937
2938 * src/list.c (read_header): Fix bugs when interpreting
2939 POSIX-compliant headers that do not contain null bytes in the
2940 header or link names.
2941
2942 1999-08-14 Paul Eggert <eggert@twinsun.com>
2943
2944 * configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.7.
2945
2946 * configure.in (AC_CHECK_HEADERS): Remove sys/wait.h.
2947 (AC_HEADER_SYS_WAIT): Add.
2948 (AC_REPLACE_FUNCS): Add waitpid.
2949 (tar_cv_header_union_wait, HAVE_UNION_WAIT): Remove.
2950 * lib/waitpid.c: New file.
2951 * lib/Makefile.am (EXTRA_DIST): Add waitpid.c.
2952 * src/system.h (WCOREDUMP): Remove; no longer used.
2953 (WIFSTOPPED): Likewise.
2954 (WEXITSTATUS, WIFSIGNALED): Default to Solaris 7 versions.
2955 * src/buffer.c (child_open_for_compress): Undo previous change.
2956 (close_archive): Use waitpid, POSIX-style, instead of old BSD style.
2957 (new_volume): Likewise.
2958
2959 * src/buffer.c, src/extract.c, src/incremen.c (time):
2960 Don't declare if defined.
2961 * src/extract.c (extr_init): Remove unneeded cast around 0 arg to time.
2962 * src/incremen.c (read_directory_file):
2963 Invoke `time' the same way everyone else does.
2964 Check validity of --listed-incremental file contents a bit better.
2965 Do not worry about --after-date-option; tar.c now checks this.
2966 * src/list.c (isotime): Report ??? if localtime returns null.
2967 Don't assume years fit into four digits.
2968 Don't append trailing newline.
2969 (print_header): Report ??? if localtime returns null;
2970 Don't assume years fit into four digits.
2971
2972 * src/compare.c (diff_archive): Do not fall back on absolute name
2973 when --absolute-names is not specified.
2974
2975 * src/create.c (start_header):
2976 Include text of ignored filesystem prefix in warning.
2977 (create_archive): Check for excluded names when doing incremental
2978 pass through directory.
2979 (dump_file): Do not dump old files explicitly given on command line
2980 when using --listed-incremental. Do not strip ./ prefix from names.
2981
2982 * src/tar.c: -g now implies after_date_option = 1.
2983 -g and -N are now incompatible options.
2984
2985 * doc/tar.texi: Explain --exclude better. Don't strip leading `./'.
2986
2987 1999-08-11 Jeff Dairiki <dairiki@dairiki.org>
2988
2989 * src/list.c (read_header): Don't parse OLDGNU_FORMAT
2990 incremental headers as POSIX prefixes.
2991
2992 1999-08-11 Paul Eggert <eggert@twinsun.com>
2993
2994 * NEWS, configure.in: Version 1.13.6.
2995
2996 * configure.in (ALL_LINGUAS): Add pt_BR.
2997 * po/pt_BR.po: New file.
2998
2999 * doc/Makefile.am ($(srcdir)/tar.info, $(srcdir)/header.texi):
3000 Renamed from tar.info and header.texi; adjust actions so that
3001 they work in other directories.
3002
3003 * doc/tar.texi: Add -y and --bzip2.
3004 Patterns containing / now exclude only file names whose prefix match.
3005
3006 * lib/exclude.h (excluded_filename): New option parameter.
3007 (add_exclude_file): New ADD_FUNC parameter.
3008 (excluded_pathname): Remove decl.
3009 * lib/exclude.c (_GNU_SOURCE):
3010 Remove; no longer needed since we don't use FNM_ macros.
3011 (excluded_filename): Renamed from excluded_filename_opts.
3012 (excluded_filename, excluded_pathname): Remove.
3013 (add_exclude_file): New ADD_FUNC parameter.
3014
3015 * po/POTFILES.in: Add lib/quotearg.c.
3016
3017 * src/buffer.c (_GNU_SOURCE): Define.
3018 (<fnmatch.h>): Include unconditionally.
3019 (child_open_for_compress): Dup after closing, to avoid possible file
3020 descriptor exhaustion.
3021 (flush_write): Use FILESYSTEM_PREFIX_LEN instead of MSDOS ifdef.
3022 (flush_read): Likewise.
3023
3024 * src/common.h (LG_8, LG_64): New macros.
3025 (excluded_with_slash, excluded_without_slash): New vars.
3026 (excluded): Remove.
3027 (base_64_digits): New decl.
3028 (gid_to_chars, major_to_chars, minor_to_chars, mode_to_chars,
3029 off_to_chars, size_to_chars, time_to_chars, uid_to_chars,
3030 uintmax_to_chars,
3031 GID_TO_CHARS, MAJOR_TO_CHARS, MINOR_TO_CHARS, MODE_TO_CHARS,
3032 OFF_TO_CHARS, SIZE_TO_CHARS, TIME_TO_CHARS, UID_TO_CHARS,
3033 UINTMAX_TO_CHARS):
3034 Renamed from gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct,
3035 off_to_oct, size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct,
3036 GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT, MODE_TO_OCT, OFF_TO_OCT,
3037 SIZE_TO_OCT, TIME_TO_OCT, UID_TO_OCT, UINTMAX_TO_OCT,
3038 respectively. All definitions and uses changed.
3039 (excluded_name): New decl.
3040
3041 * src/compare.c (diff_archive):
3042 Open files with O_NONBLOCK instead of O_NDELAY.
3043
3044 * src/create.c (base_64_digits): New constant.
3045 (base_8_digits): New macro.
3046 (MAX_VAL_WITH_DIGITS): New macro.
3047 (to_base): First half of old to_oct. Support base 64 too.
3048 (to_chars): Other half of old to_oct, for 64-bit support.
3049 (GID_NOBODY, UID_NOBODY): Don't define if the headers don't.
3050 (gid_substitute, uid_substitute): Look up names dynamically if
3051 GID_NOBODY and UID_NOBODY aren't defined; use -2 if all else fails.
3052 (mode_to_chars): Renamed from mode_to_oct.
3053 Support negative values in all the _to_chars functions.
3054 (start_header): Use FILESYSTEM_PREFIX_LEN instead of MSDOS ifdef.
3055 Abort if archive format is DEFAULT_FORMAT when it shouldn't be.
3056 (dump_file): Inspect entire pathname, not just new file name
3057 component, when deciding whether to exclude it.
3058
3059 * src/extract.c (extract_archive):
3060 Open files with O_NONBLOCK instead of O_NDELAY.
3061
3062 * src/incremen.c (get_directory_contents):
3063 Inspect entire pathname, not just new file name
3064 component, when deciding whether to exclude it.
3065
3066 * src/list.c (<fnmatch.h>): Do not include.
3067 (from_chars): Renamed from from_oct. New parameter specifying
3068 the negative of the minimum allowed value. Support negative
3069 and base-64 values.
3070 (base64_map): New var.
3071 (base64_init): New function.
3072 (print_header): Output numeric uids and gids if numeric_owner_option.
3073
3074 * src/misc.c (quote_copy_string): Use LG_8 instead of constants.
3075
3076 * src/names.c (_GNU_SOURCE): Define.
3077 (<fnmatch.h>): Include unconditionally.
3078 (excluded_name): New function, taking over duties of excluded_pathname.
3079 All uses changed.
3080
3081 * src/rmt.c (decode_oflag): New function.
3082 (main): Use it to support symbolic open flags.
3083
3084 * src/rtapelib.c (encode_oflag): New function.
3085 (rmt_open__): Do not allow newlines in the path.
3086 Propagate errno correctly.
3087 Decode symbolic open flags, if present.
3088
3089 * src/system.h (FILESYSTEM_PREFIX_LEN, ISSLASH, O_ACCMODE, O_NONBLOCK):
3090 New macros.
3091
3092 * src/tar.c: (long_options, usage, OPTION_STRING, decode_options):
3093 New -y or --bzip2 option.
3094 (add_filtered_exclude): New function.
3095 (decode_options): Put excluded patterns with / into
3096 excluded_with_slash, and without / into excluded_without_slash.
3097 Compare newer_mtime_option to its new initial value
3098 TYPE_MINIMUM (time_t) when deciding whether more than one
3099 threshold date was specified.
3100
3101 1999-07-20 Paul Eggert <eggert@twinsun.com>
3102
3103 * NEWS, configure.in: Version 1.13.5.
3104
3105 * src/common.h (FATAL_ERROR): Invoke apply_delayed_set_stat
3106 before exiting.
3107 * src/buffer.c (new_volume): Likewise.
3108 * src/incremen.c (read_directory_file): Likewise.
3109 * src/tar.c (decode_options):
3110 ERROR ((TAREXIT_FAILURE, ... -> FATAL_ERROR ((0,
3111 for consistency.
3112
3113 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.4.
3114 * configure.in (AC_CHECK_FUNCS): Add lstat, readlink, symlink.
3115
3116 * src/system.h (lstat): Define only if !HAVE_LSTAT && !defined lstat.
3117 (S_ISMPB, S_ISMPC, S_ISNWK): Remove unused macros.
3118 (S_ISBLK, S_ISCHR, S_ISCTG, S_ISFIFO, S_ISLNK, S_ISSOCK):
3119 Define to 0 if the corresponding S_IF* macro is not defined.
3120 (mkfifo): Do not define if already defined, or if S_IFIFO
3121 is not defined.
3122
3123 * src/compare.c (diff_archive): Use HAVE_READLINK, not
3124 S_ISLNK, to determine whether to invoke readlink.
3125 * src/create.c (dump_file): Likewise.
3126
3127 * src/extract.c (set_mode):
3128 Do not chmod unless we are root or the -p option was given;
3129 this matches historical practice.
3130 (unlink_destination): New function, which checks for unlink failures.
3131 (maybe_recoverable): Stay quiet if -U.
3132 (extract_archive): Use O_EXCL if unlink_first_option.
3133 Report unlink failures.
3134 Use HAVE_SYMLINK, not S_ISLNK, to determine whether symlink exists.
3135 Use HAVE_MKFIFO || defined mkfifo, not S_ISFIFO, to determine whether
3136 mkfifo exists.
3137
3138 * src/incremen.c (get_directory_contents): Depend on
3139 S_ISHIDDEN, not AIX, to determine whether to invoke S_ISHIDDEN.
3140
3141 * src/list.c: Remove S_IS* ifdefs.
3142 * src/misc.c (maybe_backup_file): Likewise.
3143
3144 * src/misc.c (maybe_backup_file):
3145 "Virtual memory exhausted" -> "Memory exhausted",
3146 to conform to the other places this message is issued.
3147
3148 * src/mangle.c (extract_mangle):
3149 Replace #ifdef S_ISLNK with #ifdef HAVE_SYMLINK.
3150
3151 * src/rtapelib.c (rmt_open__):
3152 Remove typo that caused us to omit the first char
3153 of the basename.
3154
3155 1999-07-16 Paul Eggert <eggert@twinsun.com>
3156
3157 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.13.3.
3158
3159 * doc/tar.texi: A path name is excluded if any of its file name
3160 components matches an excluded pattern, even if the path name was
3161 specified on the command line.
3162 * src/create.c (create_archive): Likewise.
3163 * src/list.c (read_and): Likewise.
3164 * src/update.c (update_archive): Likewise.
3165 * lib/exclude.h (excluded_pathname): New decl.
3166 * lib/exclude.c (_GNU_SOURCE): Define.
3167 (FILESYSTEM_PREFIX_LEN, ISSLASH): New macros.
3168 (excluded_filename_opts): New function.
3169 (excluded_pathname): New function.
3170
3171 * lib/Makefile.am (EXTRA_DIST):
3172 xstrtol.c moved here from libtar_a_SOURCES.
3173 (libtar_a_SOURCES): Move xstrtol.c to EXTRA_DIST.
3174 Remove xstrtoul.c; no longer needed.
3175 * lib/xstrtol.c: Remove.
3176
3177 * src/tar.c (decode_options):
3178 Set newer_time_option to TYPE_MINIMUM, so that
3179 negative timestamps are handled correctly.
3180 Replace invocations of xstrtol and xstrtoul with xstrtoumax, for
3181 uniformity (and so that we don't need to have the other fns).
3182 (main): Remove call to init_total_written; no longer needed.
3183
3184 * configure.in (AC_CHECK_SIZEOF): Remove no-longer-needed
3185 checks for unsigned long and long long.
3186 * src/arith.c: Remove.
3187 * src/Makefile.am (tar_SOURCES): Remove arith.c.
3188 * po/POTFILES.in: Remove src/arith.c.
3189 * src/arith.h: Use double, to simplify configuration gotchas.
3190 (tarlong): Now double.
3191 (TARLONG_FORMAT): New macro.
3192 (BITS_PER_BYTE, BITS_PER_TARLONG, SUPERDIGIT, BITS_PER_SUPERDIGIT,
3193 LONGS_PER_TARLONG, SIZEOF_TARLONG, struct tarlong,
3194 zerop_tarlong_helper, lessp_tarlong_helper, clear_tarlong_helper,
3195 add_to_tarlong_helper, mult_tarlong_helper, print_tarlong_helper,
3196 zerop_tarlong, lessp_tarlong, clear_tarlong, add_to_tarlong,
3197 mult_tarlong, print_tarlong): Remove. All callers replaced with
3198 arithmetic ops.
3199
3200 * src/common.h (init_total_written): Remove decl.
3201
3202 * src/buffer.c (total_written):
3203 Remove; replaced with prev_written + bytes_written.
3204 (prev_written): New var.
3205 (init_total_written): Remove.
3206 (print_total_written): Use TARLONG_FORMAT instead of print_tarlong.
3207
3208 * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG):
3209 Make sure that we can shift, multiply
3210 and divide unsigned long long values; Ultrix cc can't do it.
3211
3212 * lib/modechange.c (mode_compile): Use uintmax_t, not unsigned long.
3213 Check for any unknown bits, not just unknown bits left of the leftmost
3214 known bit.
3215
3216 * lib/quotearg.c (quotearg_buffer):
3217 Don't quote spaces if C quoting style.
3218 * src/list.c (from_oct):
3219 Use C quoting style for error; omit trailing NULs.
3220
3221 1999-07-14 Paul Eggert <eggert@twinsun.com>
3222
3223 * configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.2.
3224
3225 * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
3226 <inttypes.h> defines strtoumax as a macro (and not as a function).
3227 HP-UX 10.20 does this.
3228
3229 * src/tar.c (usage): tar-bugs@gnu.org -> bug-tar@gnu.org
3230 * PORTS, README, TODO, doc/tar.texi: Likewise.
3231
3232 1999-07-12 Paul Eggert <eggert@twinsun.com>
3233
3234 * configure.in (AM_INIT_AUTOMAKE): Version 1.13.1.
3235 (LIBOBJS): Add mktime.o to automake 1.4 bug workaround.
3236
3237 * src/list.c (decode_header):
3238 Do not assume that S_IFBLK and S_IFCHR are defined.
3239
3240 * src/create.c (start_header): Do not assume S_IFMT is defined.
3241 (dump_file): Remove unnecessary check for screwy apollo lossage.
3242 Do not assume S_IFBLK and S_IFCHR are defined.
3243
3244 * src/extract.c (extract_archive):
3245 Test whether S_IFCHR and S_IFBLK are nonzero,
3246 not whether they are defined, for consistency with other tests.
3247
3248 * src/buffer.c (is_regular_file):
3249 Don't succeed on files that we can't access due to
3250 permissions problems.
3251 (open_archive): Fix wording on fatal error message.
3252 Don't bother to stat /dev/null if the archive is not a character
3253 special device.
3254
3255 * src/compare.c (process_rawdata, diff_sparse_files, diff_archive):
3256 Report an error, not a warning, for I/O errors.
3257 (process_rawdata, process_dumpdir, diff_sparse_files):
3258 Change ungrammatical "Data differs" to "Contents differ".
3259 (get_stat_data): Find hidden files on AIX.
3260 Accept file name as argument; all uses changed.
3261 (get_stat_data, diff_archive): Use system error message for
3262 nonexistent files rather than rolling our own.
3263 (diff_archive): Unknown file types are errors, not warnings.
3264 Normalize spelling of message to "File type differs".
3265 Use get_stat_data to get link status, for consistency.
3266 Do not inspect st_rdev for fifos.
3267 Do not assume st_mode values contain only file types and mode bits.
3268 Check for mode changes and device number changes separately.
3269
3270 * src/update.c (append_file):
3271 Open the file before statting it, to avoid a race.
3272 Complain about file shrinkage only when we reach EOF.
3273
3274 1999-07-08 Paul Eggert <eggert@twinsun.com>
3275
3276 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13 released.
3277
3278 * configure.in (AC_EXEEXT): Add.
3279
3280 * lib/Makefile.am (noinst_HEADERS):
3281 Add basename.h, exclude.h. Remove full-write.h.
3282 (libtar_a_SOURCES): Add exclude.c.
3283
3284 * lib/basename.h, lib/exclude.c, lib/exclude.h, lib/safe-read.h:
3285 New files.
3286 * lib/full-write.c: Include safe-read.h instead of full-write.h.
3287 * lib/safe-read.h (safe_read): New decl.
3288 * src/rmt.c: Include safe-read.h.
3289 * src/rtapelib.c: Include basename.h, save-read.h.
3290 (rmt_open__): Use base_name to compute base name.
3291
3292 * src/common.h:
3293 Include basename.h, exclude.h; don't include full-write.h.
3294 (exclude_option): Remove decl.
3295 (excluded): New decl.
3296 (add_exclude, add_exclude_file, check_exclude): Remove decls.
3297
3298 * src/list.c (read_and):
3299 Use excluded_filename instead of check_exclude.
3300 Check base name of incoming file name, not entire file name, when
3301 deciding whether to exclude it.
3302
3303 * src/create.c (finish_sparse_file):
3304 Use excluded_filename instead of check_exclude.
3305 Don't bother to stat excluded file names.
3306 * src/incremen.c (get_directory_contents): Likewise.
3307
3308 * src/names.c (exclude_pool, exclude_pool_size,
3309 allocated_exclude_pool_size, simple_exclude_array,
3310 simple_excludes, allocated_simple_excludes,
3311 pattern_exclude_array, pattern_excludes,
3312 allocated_pattern_excludes, add_exclude, add_exclude_file,
3313 check_exclude):
3314 Remove; now done in ../lib/exclude.c.
3315
3316 * src/tar.c (decode_options): Initialize `excluded'.
3317 Use new add_exclude_file and add_exclude functions.
3318
3319 1999-07-05 Paul Eggert <eggert@twinsun.com>
3320
3321 * m4/gettext.m4: Use changequote rather than [[ ]].
3322
3323 * lib/safe-read.c: Renamed from lib/full-read.c.
3324 (safe_read): Renamed from full_read. All uses changed.
3325 * lib/safe-read.h, lib/full-write.h: New files.
3326 * lib/Makefile.am (noinst_HEADERS): Add full-write.h, safe-read.h.
3327 (libtar_a_SOURCES): Rename full-read.c to safe-read.c.
3328 * lib/full-write.c: Include full-write.h.
3329 * src/common.h: Include full-write.h, safe-read.h.
3330 * src/system.h: (full_read, full_write): Remove decls.
3331
3332 * src/Makefile.am (datadir): New var; needed for Solaris gettext.
3333
3334 * src/system.h (bindtextdomain, textdomain): undef before
3335 defining, to avoid preprocessor warnings with --disable-nls
3336 on hosts whose locale.h includes libintl.h.
3337
3338 * lib/xstrtol.c (__strtol): Remove decl; it doesn't work if __strtol
3339 expands to a macro, which occurs in HP-UX 10.20 with strtoumax.
3340 (strtol, strtoul): New decls (for pre-ANSI hosts), to replace
3341 the above decl.
3342
3343 1999-07-02 Paul Eggert <eggert@twinsun.com>
3344
3345 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/mktime.m4.
3346 * m4/mktime.m4: New file.
3347 * m4/Makefile.am.in, m4/README: Remove these files.
3348 * m4/Makefile.am (EXTRA_DIST): Add mktime.m4;
3349 remove README, Makefile.am.in.
3350 (Makefile.am): Remove rule; it didn't work in BSD/OS 4.0.
3351 * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Invoke AC_FUNC_MKTIME,
3352 not AM_FUNC_MKTIME.
3353
3354 * src/tar.c: Include signal.h.
3355 (SIGCHLD): Define to SIGCLD if SIGCLD is defined but SIGCHLD is not.
3356 (main): Ensure SIGCHLD is not ignored.
3357
3358 (BACKUP_OPTION, DELETE_OPTION, EXCLUDE_OPTION, GROUP_OPTION,
3359 MODE_OPTION, NEWER_MTIME_OPTION, NO_RECURSE_OPTION, NULL_OPTION,
3360 OWNER_OPTION, POSIX_OPTION, PRESERVE_OPTION, RECORD_SIZE_OPTION,
3361 RSH_COMMAND_OPTION, SUFFIX_OPTION, USE_COMPRESS_PROGRAM_OPTION,
3362 VOLNO_FILE_OPTION, OBSOLETE_ABSOLUTE_NAMES,
3363 OBSOLETE_BLOCK_COMPRESS, OBSOLETE_BLOCKING_FACTOR,
3364 OBSOLETE_BLOCK_NUMBER, OBSOLETE_READ_FULL_RECORDS, OBSOLETE_TOUCH,
3365 OBSOLETE_VERSION_CONTROL): Make sure they can't be valid chars, so
3366 they don't overlap with char codes. Use an enum instead of a lot
3367 of #defines.
3368
3369 * src/system.h (ISASCII): Remove.
3370 (CTYPE_DOMAIN, ISDIGIT, ISODIGIT, ISPRINT, ISSPACE, S_ISUID,
3371 S_ISGID, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP, S_IWGRP, S_IXGRP,
3372 S_IROTH, S_IWOTH, S_IXOTH, MODE_WXUSR, MODE_R, MODE_RW,
3373 MODE_RWX, MODE_ALL, SEEK_SET, SEEK_CUR, SEEK_END, CHAR_MAX,
3374 LONG_MAX): New macros.
3375
3376 * src/incremen.c (ISDIGIT, ISSPACE): Remove; now in system.h.
3377 (read_directory_file): Cast ISSPACE arg to unsigned char.
3378 * src/misc.c (ISPRINT): Remove; now in system.h.
3379 (remove_any_file): Add brackets to pacify gcc -Wall.
3380 * src/list.c: Don't include <ctype.h>; system.h already does this.
3381 (ISODIGIT, ISSPACE): Remove; now in system.h.
3382 (decode_header): No need to AND mode with 07777; MODE_FROM_OCT
3383 does this now.
3384 (from_oct): Cast ISSPACE arg to unsigned char.
3385
3386 * src/create.c (mode_to_oct): Translate modes from internal to
3387 external form.
3388 * src/list.c (mode_from_oct): Translate modes from external to
3389 internal form. Do not complain about unrecognized mode bits.
3390 * src/common.h (TSUID, TSGID, TSVTX, TUREAD, TUWRITE, TUEXEC,
3391 TGREAD, TGWRITE, TGEXEC, TOREAD, TOWRITE, TOEXEC): Remove undefs.
3392
3393 * src/extract.c: (extr_init, make_directories, extract_archive):
3394 Do not assume mode bits have traditional Unix values.
3395 * src/list.c (decode_mode): Likewise.
3396 * src/create.c (start_header, dump_file): Likewise.
3397 * src/buffer.c (child_open_for_compress,
3398 child_open_for_uncompress, open_archive, (close_archive): Likewise.
3399 * src/compare.c (diff_archive): Likewise.
3400
3401 * src/extract.c (set_mode): Use %04 not %0.4 format.
3402 (extract_sparse_file): Do not use data_block uninitialized.
3403 Check for lseek failures.
3404
3405 * src/rtapelib.c (rmt_lseek__):
3406 Convert lseek whence values to portable integers on the wire.
3407 * src/rmt.c (main): Likewise. Check for whence values out of range.
3408
3409 * src/create.c (finish_sparse_file): Use lseek whence macros
3410 instead of integers.
3411 * src/buffer.c (backspace_output): Likewise.
3412 * src/compare.c (diff_archive, verify_volume): Likewise.
3413 * src/delete.c (move_archive): Likewise.
3414 * src/extract.c (extract_sparse_file): Likewise.
3415
3416 * src/create.c (dump_file): Do not invoke finish_sparse_file
3417 on a negative file descriptor.
3418
3419 * src/buffer.c: Add braces to pacify gcc -Wall.
3420
3421 * src/compare.c (diff_sparse_files): Report lseek errors.
3422
3423 * configure.in (ALL_LINGUAS): Add cs, es, ru.
3424
3425 * PORTS, TODO: gnu.ai.mit.edu -> gnu.org
3426
3427 * src/arith.c, src/buffer.c (new_volume): Don't put ^G in
3428 message to be internationalized; \a doesn't work with msgfmt.
3429
3430 * src/tar.c (long_options, main, usage, OPTION_STRING):
3431 Remove -E or --ending-file.
3432 * src/list.c (read_and): Likewise.
3433 * src/common.h (ending_file_option): Likewise.
3434 * src/buffer.c (close_archive): Likewise.
3435
3436 * tests/after: Don't run two commands together in a pipeline,
3437 as some old shells mishandle pipeline exit status.
3438
3439 1999-06-28 Paul Eggert <eggert@twinsun.com>
3440
3441 * configure.in (AM_INIT_AUTOMAKE): version 1.12.64015.
3442 * NEWS: Describe changes since 1.12.
3443 * README: Update bug reporting address; move paxutils ref to NEWS.
3444
3445 Handle EINTR correctly.
3446 * lib/Makefile.am (libtar_a_SOURCES): Add full-read.c, full-write.c.
3447 * lib/full-read.c, lib/full-write.c: New files.
3448 * src/buffer.c (child_open_for_compress, child_open_for_uncompress):
3449 Prefer full_read to read and full_write to write.
3450 * src/compare.c (process_rawdata, diff_sparse_files): Likewise.
3451 * src/create.c (deal_with_sparse, finish_sparse_file, dump_file):
3452 Likewise.
3453 * src/extract.c (extract_sparse_file): Likewise.
3454 * src/rmt.c (get_string, main, report_error_message,
3455 report_numbered_error): Likewise.
3456 * src/rmt.h (rmtread, rmtwrite): Likewise.
3457 * src/rtapelib.c (do_command, get_status_string, rmt_read__,
3458 rmt_write__, rmt_ioctl__): Likewise.
3459 * src/update.c (append_file): Likewise.
3460 * src/system.h (full_read, full_write): New decls.
3461
3462 * po/POTFILES.in: Add lib/argmatch.c, lib/error.c lib/getopt.c,
3463 lib/xmalloc.c, src/arith.c, src/misc.c.
3464
3465 * src/system.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
3466 New macros. All uses of STDIN and STDOUT changed.
3467 * src/rmt.c (prepare_record_buffer, main): Use STDIN_FILENO
3468 instead of 0 and STDOUT_FILENO instead of 1.
3469 * src/rtapelib.c (_rmt_rexec): Use STDIN_FILENO and STDOUT_FILENO
3470 instead of fileno (stdin) and fileno (stdout) or 0 and 1.
3471
3472 * src/rmt.c (private_strerror): Avoid const. Translate results.
3473
3474 * tests/Makefile.am (TESTS): Remove incremen.sh; it doesn't work
3475 in the presence of NFS clock skew.
3476
3477 1999-06-25 Paul Eggert <eggert@twinsun.com>
3478
3479 * configure.in (AM_INIT_AUTOMAKE): version 1.12.64014.
3480
3481 * src/buffer.c (write_archive_buffer): New function.
3482 (child_open_for_compress, flush_write, flush_read): Use it to write
3483 buffers.
3484 (open_archive): Report error if fstat of archive fails.
3485 Improve efficiency of check for /dev/null.
3486 Also, fix some corner cases with remote archives and /dev/null checking.
3487 (close_archive): Test for input fifo only if not remote.
3488 Truncate output archive only if it's not remote.
3489
3490 * src/misc.c (remove_any_file):
3491 Don't terminate if you see . or ..; just skip them.
3492
3493 1999-06-18 Paul Eggert <eggert@twinsun.com>
3494
3495 * configure.in (AM_INIT_AUTOMAKE): version 1.12.64013.
3496
3497 Output sizes using a format that's more compatible with
3498 traditional tar (and with GNU Emacs).
3499 * src/common.h (GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT,
3500 MODE_TO_OCT, SIZE_TO_OCT, UID_TO_OCT, UINTMAX_TO_OCT):
3501 Don't subtract 1 from size.
3502 * src/create.c (to_oct): Prepend leading zeros, not spaces.
3503 Output a trailing NUL unless the value won't fit without it.
3504 (finish_header): No need to append NUL to chksum, now that
3505 to_oct is doing it.
3506
3507 1999-06-16 Paul Eggert <eggert@twinsun.com>
3508
3509 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64012.
3510
3511 * src/Makefile.am (LDADD): Link libtar.a after @INTLLIBS@, since
3512 @INTLLIBS@ might invoke rpl_realloc.
3513
3514 * src/tar.c (backup_type): Remove decl; backupfile.h now has it.
3515 (intconv): Remove; use xstrto* fns instead.
3516 ("xstrtol.h"): Include.
3517 (check_decimal): Remove.
3518 (long_options, usage, OPTION_STRING, decode_options):
3519 Remove -y, --bzip2, --unbzip2.
3520 (decode_options): Use xget_version instead of get_version.
3521 Check for overflow with -b and -L and RECORD_SIZE_OPTION.
3522 Replace invocations of check_decimal with xstrtoumax.
3523
3524 * tests/preset.in (echo_n, echo_c): Remove.
3525
3526 * tests/after: Don't rely on $echo_c and $echo_n.
3527
3528 * lib/addext.c, lib/dirname.c, lib/lchown.c, lib/lchown.h,
3529 lib/malloc.c, lib/mktime.c, lib/realloc.c, lib/strtol.c, lib/strtoul.c,
3530 lib/strtoull.c, lib/strtoumax.c, lib/utime.c, lib/xstrtol.c,
3531 lib/xstrtol.h, lib/xstrtoul.c, lib/xstrtoumax.c,
3532 m4/Makefile.am.in, m4/README, m4/ccstdc.m4, m4/d-ino.m4,
3533 m4/gettext.m4, m4/inttypes_h.m4, m4/isc-posix.m4,
3534 m4/jm-mktime.m4, m4/largefile.m4, m4/lcmessage.m4,
3535 m4/malloc.m4, m4/progtest.m4, m4/realloc.m4, m4/uintmax_t.m4,
3536 m4/ulonglong.m4, m4/utimbuf.m4, m4/utime.m4, m4/utimes.m4,
3537 m4/xstrtoumax.m4: New files.
3538
3539 * configure.in(fp_PROG_ECHO): Remove; no longer needed.
3540 (AC_SYS_LARGEFILE): Renamed from AC_LFS.
3541 (jm_AC_HEADER_INTTYPES_H): Replaces inline code.
3542 (jm_STRUCT_DIRENT_D_INO, jm_AC_TYPE_UINTMAX_T, jm_AC_PREREQ_XSTRTOUMAX): Add.
3543 (AC_CHECK_FUNCS): Remove lchown.
3544 (AC_REPLACE_FUNCS): Remove basename, dirname.
3545 Add lchown, strtol, strtoul.
3546 (jm_FUNC_MKTIME): Add.
3547 (LIBOBJS): Replace .o with $U.o, so that the .o files in LIBOBJS
3548 are also built via the ANSI2KNR-filtering rules.
3549 Use a no-op line to work around bug in automake 1.4 with malloc and
3550 realloc.
3551 (AC_OUTPUT): Add m4/Makefile.
3552
3553 * lib/Makefile.am (EXTRA_DIST):
3554 Add lchown.c, malloc.c, mktime.c, realloc.c,
3555 strtol.c, strtoul.c, strtoull.c, strtoumax.c, utime.c.
3556 (noinst_HEADERS): Add lchown.h, modechange.h, xstrtol.h.
3557 (libtar_a_SOURCES): Add addext.c, basename.c, xstrtol.c,
3558 xstrtoul.c, xstrtoumax.c. Remove getversion.c.
3559 ($(srcdir)/getdate.c:): Remove `expect conflicts' line.
3560
3561 * src/system.h (uintmax_t): Don't declare; configure now does this.
3562
3563 * src/common.h (backup_type): New decl.
3564 * src/common.h, src/misc.c, src/tar.c:
3565 Move include of backupfile.h to common.h.
3566
3567 * src/misc.c (maybe_backup_file):
3568 Pass backup_type to find_backup_file_name.
3569
3570 * src/list.c (print_header): Change sizes of uform and gform from 11 to
3571 UINTMAX_STRSIZE_BOUND.
3572
3573 * doc/tar.texi: Remove --bzip2.
3574 Fix @xref typos reported by latest makeinfo.
3575
3576 * Makefile.am (ACLOCAL_AMFLAGS): New macro.
3577 (SUBDIRS): Add m4.
3578 (M4DIR, ACINCLUDE_INPUTS): New macros.
3579 ($(srcdir)/acinclude.m4): New rule.
3580
3581 * acconfig.h (ENABLE_NLS, HAVE_CATGETS, HAVE_GETTEXT,
3582 HAVE_INTTYPES_H, HAVE_LC_MESSAGES, HAVE_STPCPY): Remve #undefs;
3583 now generated automatically by autoconf.
3584
3585 1999-05-15 Paul Eggert <eggert@twinsun.com>
3586
3587 * doc/tar.texi: Remove -y.
3588
3589 1999-04-09 Paul Eggert <eggert@twinsun.com>
3590
3591 * src/system.h (INT_STRLEN_BOUND): Fix off-by-factor-of-10 typo
3592 (we were allocating too much storage).
3593 (uintmax_t): Don't declare; configure now does this.
3594
3595 * ABOUT-NLS: Update to gettext 0.10.35 edition.
3596
3597 1999-03-22 Paul Eggert <eggert@twinsun.com>
3598
3599 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64010
3600
3601 * acinclude.m4 (AC_LFS_FLAGS):
3602 Don't use -mabi=n32 with GCC on IRIX 6.2; it's the default.
3603 (AC_LFS): -n32, -o32, and -n64 are CPPFLAGS, not CFLAGS.
3604 (jm_FUNC_MALLOC, jm_FUNC_REALLOC): New macros.
3605
3606 * configure.in (jm_FUNC_MALLOC, jm_FUNC_REALLOC):
3607 New macros; needed for latest GNU xmalloc.c.
3608
3609 * Makefile.am (noinst_HEADERS): Add quotearg.h, xalloc.h.
3610 (libtar_a_SOURCES): Add quotearg.c.
3611 * list.c: Include <quotearg.h>.
3612 (from_oct): Add forward decl.
3613 (read_header): Return HEADER_FAILURE if we can't parse the checksum.
3614 (from_oct): Report an error only if TYPE is nonzero.
3615 Quote any funny characters in bad header.
3616
3617 1999-03-20 Paul Eggert <eggert@twinsun.com>
3618
3619 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64009
3620
3621 * acinclude.m4 (AC_LFS_FLAGS): Add support for IRIX 6.2 and later.
3622 (AC_LFS_SPACE_APPEND): Assume $2 is quoted properly; all callers
3623 changed.
3624 (AC_LFS): Simplify AIX revision number test.
3625
3626 1999-03-17 Paul Eggert <eggert@twinsun.com>
3627
3628 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64008
3629
3630 * configure.in (AC_VALIDATE_CACHED_SYSTEM_TUPLE):
3631 Remove; it doesn't work that well
3632 with AC_CANONICAL_HOST.
3633 (fp_WITH_INCLUDED_MALLOC): Remove; we'll just use the system malloc.
3634
3635 * Makefile.am (EXTRA_DIST): Remove AC-PATCHES, AM-PATCHES, BI-PATCHES.
3636
3637 * Makefile.am (EXTRA_DIST): Remove gmalloc.c.
3638
3639 * acinclude.m4 (fp_WITH_INCLUDED_MALLOC): Remove.
3640
3641 * tar.texi: Fix bug-report addr.
3642
3643 * README: Remove --with-included-malloc.
3644 Upgrade version numbers of build software.
3645
3646 1999-03-07 Paul Eggert <eggert@twinsun.com>
3647
3648 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64007.
3649
3650 * acinclude.m4 (AM_WITH_NLS): Port to Solaris 2.5.1,
3651 where bindtextdomain and gettext require -lintl.
3652 (AC_LFS_FLAGS): Simplify so that it only gets the flags;
3653 `no' means it failed.
3654 (AC_LFS_SPACE_APPEND, AC_LFS_MACRO_VALUE): New macros.
3655 (AC_LFS): Use them. Set _FILE_OFFSET_BITS, _LARGEFILE_SOURCE, and
3656 _LARGE_FILES from LFS_CFLAGS, so that in the normal case we don't need
3657 to add anything to the command line (it's all in config.h).
3658 Put any extra -D and -I options into CPPFLAGS, the rest into CFLAGS.
3659
3660 1999-03-01 Paul Eggert <eggert@twinsun.com>
3661
3662 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64006.
3663
3664 * acinclude.m4 (AC_LFS_FLAGS): Port to AIX 4.2.
3665
3666 * src/list.c: (gid_from_oct, major_from_oct, minor_from_oct,
3667 mode_from_oct, off_from_oct, size_from_oct, time_from_oct,
3668 uid_from_oct, uintmax_from_oct): Use TYPE_MAXIMUM instead of macros
3669 like OFF_MAX, which are not reliable
3670 (e.g. OFF_MAX in AIX 4.2 is incorrect).
3671 * src/system.h (GID_MAX, MAJOR_MAX, MINOR_MAX, MODE_MAX, OFF_MAX,
3672 SIZE_MAX, TIME_MAX,UID_MAX, UINTMAX_MAX): Remove; no longer used.
3673
3674 * src/incremen.c (get_directory_contents):
3675 Don't use statx if _LARGE_FILES; it doesn't work under AIX 4.2.
3676 Have statx depend on STX_HIDDEN, not AIX.
3677
3678 * src/create.c (to_oct):
3679 New parameter substitute, giving a substitute value to use
3680 when the original value is out of range. Do not append a space to the
3681 output; modern tars don't. When a value is out of range, specify the
3682 maximum value, not the number of bits.
3683 (GID_NOBODY, UID_NOBODY): New macros.
3684 (gid_to_oct, uid_to_oct): Use them as substitutes.
3685 (finish_header): Do not assume that UINTMAX_TO_OCT appends a space.
3686 (dump_file): Check whether the file changed as we read it.
3687
3688 * src/rmt.c (main): Remove suspicious AIX/386 code.
3689
3690 1999-02-19 Paul Eggert <eggert@twinsun.com>
3691
3692 * intl/localealias.c (read_alias_file): Don't assume that memcpy
3693 returns a type compatible with char *; it doesn't on SunOS
3694 4.1.4 with Sun cc, since <string.h> doesn't declare memcpy.
3695
3696 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64005.
3697
3698 * src/tar.c (long_options, usage): Prefer --unbzip2 to --bunzip2.
3699 * doc/tar.texi: Add --bzip2, --unbzip2 options.
3700
3701 * configure.in (AC_CANONICAL_HOST, AC_VALIDATE_CACHED_SYSTEM_TUPLE):
3702 Add.
3703 (AC_LINK_FILES): Omit; AM_GNU_GETTEXT now does this.
3704 (AC_OUTPUT): Omit munging of po/Makefile; AM_GNU_GETTEXT now does this.
3705 * acinclude.m4 (AM_WITH_NLS):
3706 Update to latest gettext version (serial 5).
3707 (AC_LFS_FLAGS): New macro
3708 (AC_LFS): Use it. Append to CFLAGS, LDFLAGS, LDLIBS instead of
3709 working only with unset variables. Append to CFLAGS, not CPPFLAGS.
3710 Work properly in cross-compilation scenario, by checking for getconf
3711 with AC_CHECK_TOOL and by ditching uname in favor of
3712 AC_CANONICAL_HOST and $host_os. Add --disable-lfs option.
3713
3714 * lib/getdate.y: Update to fileutils 4.0 getdate.y, with one patch:
3715 replace FORCE_ALLOCA_H with HAVE_ALLOCA_H.
3716 * lib/Makefile.am (AUTOMAKE_OPTIONS): Append ../src/ansi2knr,
3717 since getdate.y now uses ANSI code.
3718
3719 * config.guess, config.sub: New files; taken from automake 1.4.
3720
3721 * intl/Makefile.in, intl/VERSION, intl/bindtextdom.c,
3722 intl/cat-compat.c, intl/dcgettext.c, intl/dgettext.c,
3723 intl/explodename.c, intl/finddomain.c, intl/gettext.c,
3724 intl/gettext.h, intl/gettextP.h, intl/hash-string.h,
3725 intl/l10nflist.c, intl/libgettext.h, intl/loadinfo.h,
3726 intl/loadmsgcat.c, intl/localealias.c, intl/textdomain.c:
3727 Update to GNU gettext 0.10.35, with patches as per GCC snapshot 990109.
3728
3729 1999-02-01 Paul Eggert <eggert@twinsun.com>
3730
3731 * src/tar.c: Update copyright.
3732
3733 * NEWS: 1.12.64004
3734
3735 1999-02-01 Paul Eggert <eggert@twinsun.com>
3736
3737 * NEWS, configure.in: Version 1.12.64004
3738
3739 * configure.in (AC_LFS): Use this macro, instead of open-coding it.
3740
3741 * acinclude.m4 (AC_LFS, AM_PROG_CC_STDC): New macros.
3742
3743 * src/extract.c (extract_archive): Fix bug when extracting sparse
3744 files: they were trashing the tar file header.
3745
3746 * src/tar.c: (long_options, usage, OPTION_STRING, decode_options):
3747 Add -y or --bzip2 or --bunzip2 option.
3748
3749 1999-01-30 Paul Eggert <eggert@twinsun.com>
3750
3751 * src/names.c (cached_no_such_uname, cached_no_such_gname,
3752 cached_no_such_uid, cached_no_such_gid): New vars.
3753 (uid_to_uname, gid_to_gname, uname_to_uid, gname_to_gid):
3754 Cache failures, too.
3755
3756 * src/tar.c (decode_options):
3757 Don't pass names longer than UNAME_FIELD_SIZE to
3758 uname_to_uid, as it messes up the cache. Similarly for gname_to_uid.
3759
3760 1999-01-27 Paul Eggert <eggert@twinsun.com>
3761
3762 * NEWS, configure.in: Version 1.12.64003
3763
3764 * src/buffer.c (backspace_output, close_archive): Cast
3765 rmtlseek position arg to off_t, for benefit of K&R compilers
3766 with long long.
3767 * src/compare.c (verify_volume): Likewise.
3768
3769 * NEWS, configure.in: Version 1.12.64002
3770
3771 * src/create.c (gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct,
3772 off_to_oct, size_to_oct, time_to_oct, uid_to_oct):
3773 Cast arg to uintmax_t for benefit of pre-ANSI compilers with long long.
3774 * src/list.c: (gid_from_oct, major_from_oct, minor_from_oct,
3775 mode_from_oct, off_from_oct, size_from_oct, time_from_oct,
3776 uid_from_oct): Likewise.
3777
3778 1999-01-25 Paul Eggert <eggert@twinsun.com>
3779
3780 * incremen.sh: Fix timing bug in regression test.
3781
3782 1999-01-22 Paul Eggert <eggert@twinsun.com>
3783
3784 * NEWS, configure.in: Update version
3785
3786 * Makefile.am (localedir): Change to $(datadir)/locale.
3787 (DEFS): New macro, defining LOCALEDIR.
3788 (tar.o, tar._o, rmt.o, rmt._o): Remove.
3789 (INCLUDES): Add -I..
3790
3791 * Makefile.am (localedir): Change to $(datadir)/locale.
3792
3793 1999-01-21 Paul Eggert <eggert@twinsun.com>
3794
3795 * NEWS, README, configure.in: Unofficial version 1.12.64001.
3796
3797 * tests/Makefile.am (localedir): Change to $(datadir)/locale.
3798 * src/Makefile.am (localedir): Likewise.
3799 (DEFS): New macro, defining LOCALEDIR.
3800 (tar.o, tar._o, rmt.o, rmt._o): Remove.
3801 (INCLUDES): Add `-I..'.
3802
3803 * tests/incremen.sh: Fix timing bug.
3804
3805 1999-01-20 Paul Eggert <eggert@twinsun.com>
3806
3807 * NEWS, README, configure.in: Unofficial version 1.12.64000.
3808 `lfs.7' changed to `64000' in version number
3809 to conform to gnits standards.
3810
3811 * COPYING, INSTALL, doc/texinfo.tex, install-sh, missing,
3812 mkinstalldirs, ansi2knr.c: Update to latest public versions.
3813
3814 Rebuild with automake 1.4 and autoconf 2.13, to work around some
3815 porting problems.
3816
3817 1998-12-07 Paul Eggert <eggert@twinsun.com>
3818
3819 * NEWS, README, configure.in: Unofficial version 1.12.lfs.6.
3820
3821 * src/list.c (read_header):
3822 Accept file names as specified by POSIX.1-1996 section 10.1.1.
3823
3824 1998-11-30 Paul Eggert <eggert@twinsun.com>
3825
3826 * configure.in: Quote the output of uname.
3827
3828 * src/extract.c (set_stat): chmod after chown even when not root;
3829 if we are using --same-owner this is needed e.g. on Solaris 2.5.1.
3830
3831 1998-11-15 Paul Eggert <eggert@twinsun.com>
3832
3833 * NEWS, README, configure.in: Unofficial version 1.12.lfs.5.
3834
3835 * configure.in (ac_test_CPPFLAGS, ac_test_LDFLAGS, ac_test_LIBS,
3836 ac_getconfs, ac_result): Special case for HP-UX 10.20 or later.
3837
3838 1998-10-28 Paul Eggert <eggert@twinsun.com>
3839
3840 * NEWS, README, configure.in: Unofficial version 1.12.lfs.4.
3841
3842 * src/system.h (voidstar): Use void * if __STDC__ is defined,
3843 not merely nonzero.
3844
3845 * src/rtapelib.c: Don't use rexec code unless compiled with WITH_REXEC.
3846 On many installations, rexec is disabled.
3847
3848 1998-08-07 Paul Eggert <eggert@twinsun.com>
3849
3850 * NEWS, README, configure.in: Unofficial version 1.12.lfs.3.
3851
3852 * src/names.c (uid_to_uname, gid_to_gname): Don't used cached name
3853 for nameless users and groups.
3854
3855 1998-02-17 Paul Eggert <eggert@twinsun.com>
3856
3857 * NEWS, README, configure.in: Unofficial version 1.12.lfs.2.
3858 * NEWS, README: Add explanation of why this isn't an official version.
3859
3860 1998-02-02 Paul Eggert <eggert@twinsun.com>
3861
3862 * NEWS, README, configure.in: Unofficial version 1.12.lfs.1.
3863 This is an unofficial version.
3864
3865 1997-12-17 Paul Eggert <eggert@twinsun.com>
3866
3867 * src/incremen.c (ST_DEV_MSB): New macro.
3868 (NFS_FILE_STAT): Use most significant bit of st_dev,
3869 even if it's unsigned.
3870
3871 1997-12-08 Paul Eggert <eggert@twinsun.com>
3872
3873 * src/system.h (ST_NBLOCKS): Fix typo in definition.
3874
3875 1997-11-19 Paul Eggert <eggert@twinsun.com>
3876
3877 * configure.in (HAVE_INTTYPES_H):
3878 Don't ignore cache variable if it's already set.
3879
3880 1997-11-10 Paul Eggert <eggert@twinsun.com>
3881
3882 * src/rmt.c (main): Don't assume mt_count is of type daddr_t.
3883 * src/delete.c (records_read): Now off_t.
3884 (move_archive): Don't assume mt_count is of type daddr_t.
3885
3886 1997-10-30 Paul Eggert <eggert@twinsun.com>
3887
3888 * configure.in (CPPFLAGS, LDFLAGS, LIBS):
3889 Set to appropriate values if large file support
3890 needs explicit enabling.
3891 (HAVE_INTTYPES_H, HAVE_ST_FSTYPE_STRING, daddr_t, major_t, minor_t,
3892 ssize_t):
3893 New macros to configure.
3894 (AC_TYPE_MODE_T, AC_TYPE_PID_T, AC_TYPE_OFF_T): Add.
3895
3896 * acconfig.h (daddr_t, HAVE_INTTYPES_H, HAVE_ST_FSTYPE_STRING,
3897 major_t, minor_t, ssize_t): New macros.
3898
3899 * src/arith.h (TARLONG_FORMAT):
3900 Fix typo: %uld -> %lu. Use unsigned when long long
3901 (%lld -> %llu).
3902 (add_to_tarlong_helper, mult_tarlong_helper): 2nd arg is now unsigned long.
3903 (add_to_tarlong, mult_tarlong): Cast 2nd arg to unsigned long.
3904
3905 * src/arith.c (add_to_tarlong_helper, mult_tarlong_helper):
3906 2nd arg is now unsigned long.
3907
3908 * src/rmt.c (allocated_size): Now size_t, and now initialized to 0.
3909 (prepare_record_buffer): Arg is now size_t.
3910 Remove now-useless casts.
3911
3912 (main): Use `long' for status, so that it can store ssize_t.
3913 Use daddr_t, mode_t, size_t, off_t when appropriate.
3914 Convert daddr_t and off_t values ourselves, since they might be longer
3915 than long. Convert other types using `long' primitives.
3916 When processing MTIOCTOP, do not try to pass resulting
3917 count back, since it won't work (it could be too large) and it's
3918 not expected anyway.
3919
3920 * src/update.c:
3921 (append_file) Use off_t, size_t, ssize_t when appropriate. Remove
3922 now-useless casts. Use unsigned long to print *_t types, except use
3923 STRINGIFY_BIGINT for off_t.
3924 (update_archive): Cast -1 to dev_t when necessary.
3925
3926 * src/tar.c (check_decimal):
3927 Now returns 1 if successful, 0 otherwise, and returns
3928 uintmax_t value into new arg. Check for arithmetic overflow.
3929 (decode_options): Avoid overflow if record_size fits in size_t but not int.
3930 Check for overflow on user or group ids.
3931
3932 * src/compare.c (diff_init, process_rawdata, read_and_process,
3933 diff_sparse_files, diff_archive):
3934 Use off_t, pid_t, size_t, ssize_t when appropriate.
3935 Remove now-useless casts. Use unsigned long to print *_t types,
3936 except use STRINGIFY_BIGINT for off_t.
3937
3938 (process_noop, process_rawdata, process_dumpdir, read_and_process):
3939 Size arg is now size_t.
3940
3941 (diff_sparse_files): Arg is now off_t. Check for size_t overflow
3942 when allocating buffer.
3943
3944 * src/rtapelib.c:
3945 (do_command, rmt_open__, rmt_read__, rmt_lseek__, rmt_ioctl__):
3946 Use pid_t, size_t, ssize_t when appropriate. Remove now-useless casts.
3947 Use unsigned long to print *_t types, except use STRINGIFY_BIGINT for
3948 off_t.
3949
3950 (get_status_string, get_status_off): New function.
3951 (get_status): Now returns long, so that it can store ssize_t.
3952 Invoke get_status_string to do the real work.
3953 (rmt_read__, rmt_write__): Now returns ssize_t. Size arg is now size_t.
3954 (rmt_lseek__): Now returns off_t, using new get_status_off function.
3955 (rmt_ioctl__): Convert mt_count by hand,
3956 since it might be longer than long.
3957
3958 * src/mangle.c (extract_mangle):
3959 Check for overflow when converting off_t to size_t.
3960 Use off_t, size_t when appropriate. Remove now-useless casts.
3961
3962 * src/system.h (mode_t): Remove; now done by autoconf.
3963 (ST_NBLOCKS): Do not overflow if st_size is near maximum.
3964 Return number of ST_NBLOCKSIZE-byte blocks,
3965 not number of 512-byte blocks;
3966 this also helps to avoid overflow.
3967 (st_blocks): Declare if needed.
3968 (ST_NBLOCKSIZE): New macro.
3969 (<limits.h>, <inttypes.h>): Include if available.
3970 (CHAR_BIT): New macro.
3971 (uintmax_t): New typedef.
3972 (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_STRLEN_BOUND,
3973 UINTMAX_STRSIZE_BOUND, GID_MAX, MAJOR_MAX, MINOR_MAX, MODE_MAX,
3974 OFF_MAX, SIZE_MAX, TIME_MAX, UID_MAX, UINTMAX_MAX): New macros.
3975
3976 * src/names.c (name_init):
3977 Fix typo in error message: FILE* was passed, but char*
3978 was wanted.
3979
3980 (read_name_from_file, name_gather, addname, name_match, name_scan,
3981 add_exclude): Use size_t when appropriate. Remove now-useless casts.
3982
3983 (exclude_pool_size, allocated_exclude_pool_size): Now size_t.
3984
3985 * src/extract.c (newdir_umask, current_umask): Now mode_t.
3986 (extract_sparse_file): Args now use off_t.
3987
3988 (set_mode, set_stat, make_directories, extract_sparse_file,
3989 extract_archive): Use off_t, size_t, ssize_t when appropriate. Remove
3990 now-useless casts. Use unsigned long to print *_t types, except use
3991 STRINGIFY_BIGINT for off_t.
3992
3993 * src/misc.c (quote_copy_string):
3994 Use size_t when appropriate. Remove now-useless casts.
3995
3996 * src/list.c (read_and, list_archive, read_header, decode_mode,
3997 print_header, print_for_mkdir):
3998 Use mode_t, off_t, size_t when appropriate. Remove
3999 now-useless casts. Use unsigned long to print *_t types, except use
4000 STRINGIFY_BIGINT for off_t.
4001
4002 (read_header): Check for overflow when converting header size.
4003
4004 (from_oct): Now static. Now returns uintmax_t. `where' arg is now
4005 const char *. Size arg is now size_t. Now takes new type and maxval
4006 args. Compute result using uintmax_t, not long. Report error if
4007 field does not contain octal number in range.
4008 (gid_from_oct, major_from_oct, minor_from_oct, mode_from_oct,
4009 off_from_oct, size_from_oct, time_from_oct, uid_from_oct,
4010 uintmax_from_oct): New functions.
4011
4012 (stringify_uintmax_t_backwards): New function.
4013
4014 (decode_mode, print_for_mkdir): Mode arg is now mode_t.
4015 (skip_file): Offset arg is now off_t.
4016
4017 * src/buffer.c (record_start_block, save_totsize, save_sizeleft,
4018 real_s_totsize, real_s_sizeleft, current_block_ordinal):
4019 Now off_t.
4020 (write_error): Arg is now ssize_t.
4021 (child_pid): Now pid_t.
4022 (available_space_after): Now size_t.
4023
4024 (child_open_for_compress, child_open_for_uncompress, flush_write,
4025 open_archive, flush_write, write_error, flush_read, close_archive):
4026 Use pid_t, ssize_t, size_t when appropriate. Remove now-useless
4027 casts. Use unsigned long to print *_t types, except use
4028 STRINGIFY_BIGINT for off_t.
4029
4030 * src/delete.c (records_read): Now daddr_t.
4031 (move_archive): Arg is now daddr_t. Check for overflow when
4032 computing offset.
4033 (move_archive, delete_archive_members): Use daddr_t, off_t when
4034 appropriate. Remove now-useless casts.
4035
4036 * src/rmt.h (rmt_read__, rmt_write__): Now returns ssize_t.
4037 (rmt_lseek): Now returns off_t.
4038
4039 * src/create.c (to_oct):
4040 Now static. Value arg is now uintmax_t. Accept new args
4041 giving name of type of octal field, for error messages. Report an
4042 error if the value is too large to fit in the field.
4043 (gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct, off_to_oct,
4044 size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct): New functions.
4045
4046 (write_eot, write_long, finish_header, deal_with_sparse,
4047 finish_sparse_file, dump_file): Use dev_t, off_t, ssize_t, size_t when
4048 appropriate. Remove now-useless casts. Use unsigned long to print
4049 *_t types, except use STRINGIFY_BIGINT for off_t.
4050
4051 (find_new_file_size): 1st arg is now off_t*.
4052 (finish_sparse_file): Args now use off_t, not long.
4053 Check for lseek error.
4054 (create_archive, dump_file): Cast -1 to dev_t when necessary.
4055 (dump_file): Device arg is now dev_t.
4056 Avoid overflow when testing whether file has holes
4057 by using the new ST_NBLOCKSIZE macro.
4058
4059 * src/incremen.c (struct accumulator, add_to_accumulator,
4060 get_directory_contents, add_hierarchy_to_namelist, gnu_restore):
4061 Use size_t for sizes.
4062 (struct directory, get_directory_contents, add_hierarchy_to_namelist):
4063 Use dev_t, ino_t for devices and inodes.
4064 (gnu_restore): Use off_t for file offsets.
4065 (struct directory): Use char for flags. Add new flag `nfs'.
4066 (nfs): New constant
4067 (NFS_FILE_STAT): New macro.
4068 (note_directory): Accept struct stat * instead of
4069 device and inode number. All callers changed.
4070 (note_directory, get_directory_contents):
4071 Use NFS_FILE_STAT to determine whether directory is an NFS directory.
4072 (write_dir_file): Cast time_t to unsigned long before printing as %lu.
4073
4074 * src/common.h (record_size, struct name, struct sp_array,
4075 available_space_after):
4076 Use size_t for sizes.
4077 (save_sizeleft, save_totsize, current_block_ordinal, skip_file):
4078 Use off_t for file offsets.
4079 (struct name): dir_contents is now const char *, not char *.
4080 (dump_file, get_directory_contents): Use dev_t for devices.
4081 (to_oct): Remove decl.
4082 (GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT, MODE_TO_OCT, SIZE_TO_OCT,
4083 UID_TO_OCT, UINTMAX_TO_OCT, OFF_TO_OCT, TIME_TO_OCT, STRINGIFY_BIGINT,
4084 GID_FROM_OCT, MAJOR_FROM_OCT, MINOR_FROM_OCT, MODE_FROM_OCT,
4085 OFF_FROM_OCT, SIZE_FROM_OCT, TIME_FROM_OCT, UID_FROM_OCT,
4086 UINTMAX_FROM_OCT): New macros.
4087 (gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct, off_to_oct,
4088 size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct,
4089 stringify_uintmax_t_backwards, gid_from_oct, major_from_oct,
4090 minor_from_oct, mode_from_oct, off_from_oct, size_from_oct,
4091 time_from_oct, uid_from_oct, uintmax_from_oct): New decls.
4092 (print_for_mkdir): 2nd arg is now mode_t.
4093
4094 See ChangeLog.1 for earlier changes.
4095
4096
4097 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2003 Free Software Foundation,
4098 Inc.
4099
4100 This file is part of GNU tar.
4101
4102 GNU tar is free software; you can redistribute it and/or modify
4103 it under the terms of the GNU General Public License as published by
4104 the Free Software Foundation; either version 2, or (at your option)
4105 any later version.
4106
4107 GNU tar is distributed in the hope that it will be useful,
4108 but WITHOUT ANY WARRANTY; without even the implied warranty of
4109 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4110 GNU General Public License for more details.
4111
4112 You should have received a copy of the GNU General Public License
4113 along with GNU tar; see the file COPYING. If not, write to
4114 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
4115 Boston, MA 02111-1307, USA.
This page took 0.215584 seconds and 4 git commands to generate.