Guess the byte order of old-format locate databases
[findutils.git] / ChangeLog
blobc2224bc8e49399e2abcb87684c4207832ac0479a
1 2007-06-09  James Youngman  <jay@gnu.org>
3         * doc/find.texi (Security Considerations for locate): Discuss in
4         detail the buffer overrun when reading old-format locate
5         databases.  This is CVE reference CVE-2007-2452.
7 2007-06-05  James Youngman  <jay@gnu.org>
9         Guess the byte-order of old-format locate databases.
10         * locate/word_io.c (getword): Make the endian_state_flag parameter
11         an enum rather than an int.  If we are in the initial ("don't
12         know") byte-order guessing state and the swapped value is out of
13         range, use this as evidence that the byte order is native.
14         * locate/locatedb.h: Declare getword accordingly.
15         * locate/locate.c (struct process_data): Added endian_state
16         member, which remembers for us what the big/little endian order
17         guessing state is when we read an old-format database.
18         (visit_old_format): Use the procdata.endian_state rather than a
19         local variable, so that the information can persist across calls.
20         (i_am_little_endian): Locate figures out if we needed to byteswap
21         the words in an old-format database, but that is an implementation
22         detail.  Therefore we figure out our own byte order so that we can
23         produce a more relevant message for --statistics.  The
24         i_am_little_endian() returns nonzero if the current host has
25         little-endian byte order.
26         (search_one_database): Report the byte-order of old-format
27         databases. 
29 2007-06-04  James Youngman  <jay@gnu.org>
31         * locate/testsuite/Makefile.am (EXTRA_DIST_XO, EXTRA_DIST_EXP):
32         Added old_prefix.exp and old_prefix.xo, a new test case for long
33         shared rpefixes with the old database format.
35         * locate/locate.c (visit_old_format): Use getword() from word_io.c
36         instead of getw(), because getw() is not in POSIX.
37         * locate/word_io.c: New file, providing replacement for getw().
38         * locate/locatedb.h: Declare getword()
39         * locate/Makefile.am (locate_SOURCES): Added word_io.c
41         * locate/testsuite/config/unix.exp (locate_start): Make the
42         failure messages slightly more explicit; indicate what went wrong
43         when a test fails.
45 2007-06-03  James Youngman  <jay@gnu.org>
47         * locate/locate.c (visit_old_format, extend, toolong): Extend the
48         buffer used to build the current pathname when reading an
49         old-format database.  The new function extend is called to do
50         this.  The new function toolong is called to report a fatal error
51         when the buffer size would otherwise exceed SIZE_MAX.  This fixes
52         Savannah bug #20014, which is a security-related problem with the
53         CVE identifier CVE-2007-2452.
55         * configure.in: Determine if the setgroups function is available,
56         and set HAVE_SETGROUPS if so.
57         * locate/locate.c (drop_privs): Call setgroups() only if 
58         HAVE_SETGROUPS indicates that it is available.  This fixes
59         Savannah bug #19981.
61 2007-05-31  James Youngman  <jay@gnu.org>
63         * find/parser.c (parse_time): Once we have determined the
64         comparison type, restore the original time argument since
65         get_relative_timestamp() also wants to see it.  This fixes
66         Savannah bug #20005.
68 2007-05-31  Jakub Bogusz <qboosh@pld-linux.org>  (trivial change)
70         * find/parser.c (parse_group): Correct typo in error message.
71         (check_path_safety): same
73 2007-05-27  James Youngman  <jay@gnu.org>
75         * import-gnulib.config (modules): Import sys_stat.
76         (gnulib_version): Update to 2007-05-26.  This fixes a compilation
77         error in stdlib.h with the DEC C compiler.  This fixes Savannah
78         bug# 19983.
80         * find/parser.c (safe_atoi): New function, like atoi, but which
81         calls error(1, ...) when the argument is invalid or out of range.
82         (parse_group): Use safe_atoi.
83         (insert_depthspec): Use safe_atoi
84         (parse_user): Use safe_atoi
86         * configure.in: Check for fabs in libm (fixing a compilation error
87         on Solaris).
89         * import-gnulib.config (modules): Import the wcwidth module to
90         provide it on those systems (such as BeOS) which lack it.
92         * find/pred.c (file_sparseness): If st_blocks is not present in
93         struct stat, the file has a sparseness of 1.0.
95         * doc/find.texi (Size Directives): Document the %S format
96         directive for -printf.
98         * find/pred.c (mode_to_filetype): Don't use S_IFSOCK on systems
99         which lack that macro.  POSIX systems are allowed to lack
100         sockets (it's an XSI extension).
101         (file_sparseness): If struct stat lacks st_blocks, assume all
102         files have a spearseness of 1.0.
104         * import-gnulib.config (modules): Import fchdir inorder to fix an
105         undefined-symbol error for fchdir on BeOS.
107 2007-05-26  James Youngman  <jay@gnu.org>
109         Code refactoring in locate.
110         * locate/locate.c (visit): New function, into which we factor out
111         the traversal of the inspector list.
112         (process_simple): Use visit().
113         (process_or): Use visit().
114         (process_and): Use visit().
116         Speed improvements in locate for unibyte locales.
117         * locate/locate.c (visit_substring_match_nocasefold_wide): Renamed
118         from visit_substring_match_nocasefold.
119         (visit_substring_match_casefold_wide): Renamed from
120         visit_substring_match_casefold.
121         (visit_substring_match_casefold_narrow): Special case of
122         visit_substring_match_casefold_wide which we use for unibyte
123         locales; we use strcasestr() rather than mbscasestr().
124         (visit_substring_match_nocasefold_narrow): Ditto, using strstr()
125         instead of mbsstr().
127         * find/parser.c (parse_gid): Return an explicit boolean constant
128         rather than automatically converting from a pointer, because the
129         gnulib substitute for bool (or _Bool) in c89 environments lacking
130         bool does not support that conversion.  One affected system is Sun
131         WorkShop Compilers 5.0 98/12/15 C 5.0 on Solaris 7.  This is
132         Savannah bug #19970, reported by Nelson Beebe.
133         (parse_inum): Ditto.
134         (parse_links): Ditto.
135         (parse_uid): Ditto.
136         (check_path_safety): declarations need to go before code, not
137         interspersed.  Move declaration of char* s.
139         * xargs/testsuite/xargs.posix/rc-125.exp: Explain Savannah bug
140         #19969.   This bug is not yet fixed.
142         * find/defs.h: #include <stdint_.h>, for uintmax_t.  This should
143         fix a compilation error on DEC C V5.9-005 on Digital UNIX V4.0F
144         (Rev. 1229).  This is Savannah bug #19965, reported by Nelson
145         Beebe.  
147         * find/defs.h: Don't include <errno.h>, since it is not needed in
148         the header file itself.  The "extern int errno;" declaration is
149         now obsolete.
150         * find/parser.c: Include <errno.h>
151         * find/pred.c: Dito
152         * find/util.c: Ditto
154 2007-05-24  James Youngman  <jay@gnu.org>
156         * find/util.c (check_nofollow): If O_NOFOLLOW is defined but 0,
157         act as if it is undefined.  This should prevent a runtime
158         assertion failure on IRIX 6.5.  This fixes Savannah bug #19948,
159         reported by Nelson Beebe.
160         
161         * m4/noreturn.m4: New file, testing for support of __attribute__
162         ((__noreturn__)).  Defines jy_AC_ATTRIBUTE_NORETURN and sets
163         HAVE_ATTRIBUTE_NORETURN. 
164         * configure.in: Call jy_AC_ATTRIBUTE_NORETURN.
165         * find/defs.h (ATTRIBUTE_NORETURN): Define to nothing if
166         HAVE_ATTRIBUTE_NORETURN is not set in config.h.  This should fix a
167         compilation error with non-GCC compilers.   This is Savannah bug
168         #19967, reported by Nelson Beebe.
169         
170         * configure.in (FINDLIBS): Update FINDLIBS to link against -lm for
171         modf.   This fixed a link error on HP-UX.   This fixes Savannah
172         bug #19966, reported by Nelson Beebe.
173         * find/Makefile.am (LDADD): Use @FINDLIBS@
175 2007-05-21  James Youngman  <jay@gnu.org>
177         * build-aux/Makefile.am (EXTRA_DIST): Added man-lint.sh.
179         * locate/locate.c (drop_privs): pass the correct list of groups to
180         setgroups().  Previously, if root invoked locate, their group ID
181         would have been set to a random value.  The same bug also caused
182         an array overrun past the end of the local array groups[].  The
183         variable which gets overwritten by the buffer overrun on x86 is
184         'what'.  The value of that variable is always changed before it is
185         used, and so I believe that this buffer overrun will not cause a
186         crash.  The only effect of the bug therefore would be for locate
187         to change group to a random group ID since groups[0] is
188         uninitialised.  On my test system this random group ID is 0
189         anyway.  The effect does not depend on any externally-controllable
190         information, so it is unlikely this is exploitable.   This bug is
191         detailed as bug# 19923.
193 2007-05-19  James Youngman  <jay@gnu.org>
195         * find/find.1: Spurious .R directives (.R is not a directive)
196         should be .B.   This fixes Savannah bug #19871.
197         * build-aux/man-lint.sh: New file; verifies that the specified
198         manual pages do not provoke error messages from troff.  This is
199         used to detect further occurrences of Savannah bug #19871.
200         * find/Makefile.am (dist-hook): Run findutils-check-manpages,
201         which invokes man-lint.sh.
202         * locate/Makefile.am (dist-hook): ditto
203         * xargs/Makefile.am (dist-hook): ditto
205         * .cvsignore: Ignore ylwrap, which automake-1.10 wants us to have
206         a copy of for some reason
208         * import-gnulib.sh (main): New option -a which just runs the
209         autotools without reimporting gnulib.
211         * Makefile.am (jy-regex-fix): The previous explanatory comment
212         refers to the jy-regex-fix target, not to dist-hook, so it has
213         been moved.
215 2007-05-08  James Youngman  <jay@gnu.org>
217         * find/defs.h (struct predicate.args): str is now const.
219         * find/parser.c (get_comp_type): get_comp_type now takes a const
220         char* parameter.
221         (get_num): ditto
222         (get_relative_timestamp): ditto.  Also use collect_arg().
223         (collect_arg_stat_info): New function; collects a command-line
224         argument and returns its xstat information, in one go.
225         error(1,...)  is called if the stat fails.
226         (parse_anewer): Use collect_arg().
227         (parse_cnewer): ditto
228         (parse_fprint): ditto
229         (parse_fstype): ditto
230         (parse_group): ditto
231         (parse_ilname): ditto
232         (parse_iname): ditto
233         (parse_iwholename): ditto
234         (parse_lname): ditto
235         (insert_depthspec): ditto
236         (parse_name): ditto
237         (parse_newer): ditto
238         (parse_wholename): ditto
239         (parse_perm): ditto
240         (parse_regextype): ditto
241         (insert_regex): ditto
242         (parse_samefile): ditto
243         (parse_used): ditto
244         (parse_user): ditto
245         (insert_type): ditto
246         (parse_time): ditto
247         (parse_size): When the size argument is invalid but consists only
248         of a valid suffix char, avoid issuing an error message about a
249         blank argument.  Append the suffix letter again.
250         (parse_xdev, parse_ignore_race, parse_noignore_race, parse_warn,
251         parse_xtype): Remove casts to void for some function parameters
252         that were, in fact, used.
254         * find/testsuite/find.gnu/fprint-unwritable.exp: new test
255         * find/testsuite/find.gnu/fprint0_stdout.exp: new test
256         * find/testsuite/find.gnu/fprint0_stdout.xo: new test
257         * find/testsuite/find.gnu/mindepth-arg.exp: new test
258         * find/testsuite/find.gnu/mindepth-arg.xo: new test
259         * find/testsuite/find.gnu/mindepth-badarg.exp: new test
260         * find/testsuite/find.gnu/print_stdout.exp: new test
261         * find/testsuite/find.gnu/print_stdout.xo: new test
262         * find/testsuite/find.gnu/samefile-missing.exp: new test
263         * find/testsuite/find.gnu/samefile-p-brokenlink.exp: new test
264         * find/testsuite/find.gnu/samefile-p-brokenlink.xo: new test
265         * find/testsuite/find.gnu/used-invarg.exp: new test
266         * find/testsuite/find.gnu/used-missing.exp: new test
267         * find/testsuite/find.gnu/user-invalid.exp: new test
268         * find/testsuite/find.posix/group-empty.exp: new test
269         * find/testsuite/find.posix/group-missing.exp: new test
270         * find/testsuite/find.posix/name-missing.exp: new test
271         * find/testsuite/find.posix/size-invalid.exp: new test
272         * find/testsuite/find.posix/size-missing.exp: new test
273         * find/testsuite/find.posix/typearg.exp: new test
274         * find/testsuite/find.posix/user-empty.exp: new test
275         * find/testsuite/find.posix/user-missing.exp: new test
277 2007-05-06  James Youngman  <jay@gnu.org>
279         * find/tree.c: (costlookup): Added pred_fls to the optimiser's
280         predicate cost lookup table.
282         * lib/printquoted.c (print_quoted): Change return value from void
283         to int, to allow the caller to detect failures.
284         * lib/printquoted.h (print_quoted): Change declaration
285         accordingly.  
287         * find/defs.h (struct format_val): Incldue a 'filename' member so
288         that we can provide more useful error messages (e.g. when we fail
289         to flush or close an output file).
290         (nonfatal_file_error): declare new function.
292         * find/util.c (traverse_tree): Utility function which calls a
293         callback on every node of the parse tree.
294         (flush_and_close_output_files): Flush all output streams.  Close
295         all output files.  Report any errors.
296         (cleanup): Use traverse_tree() to invoke
297         complete_pending_execdirs().
298         (report_file_err): refactored error reporting function, extracted
299         from fatal_file_error.
300         (nonfatal_file_error): New function.
302         * find/pred.c (checked_fprintf): New function, which performa an
303         fprinf(), and checkes the result.  If the operation resulted in an
304         error, a nonfatal error message is issued.
305         (checked_print_quoted): Ditto, for print_quoted rather than
306         fprintf.
307         (checked_fwrite): Ditto for fwrite instead of fprintf.
308         (checked_fflush): Ditto for fflush
309         (do_fprintf): Use the checked_*() functions rather than their
310         direct counterparts, to ensure that I/O errors are detected.  This
311         fixes Savannah bug #19416.
312         (pred_fls): Use args.printf_vec instead of args.stream, which has
313         now been removed. 
314         (pred_ls): just call pred_fls.
315         (pred_fprint0): use args.printf_vec, instead of the now removed
316         args.stream.
317         (pred_print0): just call pred_fprint0
319         * find/parser.c: (insert_fprintf): Make the caller collect the
320         format argument from the argument list.
321         (open_output_file): Enhance to set up defaults in
322         our_pred->args.printf_vec as well as opening the output file.
323         Also record the filename for possible later use in an error
324         message. 
325         (collect_arg): Convenience function for collecting an argument
326         from the argument list.
327         (insert_fls): Refactored the body of parse_fls out so that
328         parse_ls can use it.
329         (parse_fls): call insert_fls.
330         (parse_ls): ditto
331         (parse_fprint): Instead of setting up our_pred->args.printf_vec
332         manually, call open_output_file() to do it.
333         (parse_print): Same, but by calling open_stdout().
334         (insert_fprint): Make the caller collect the filename argument,
335         and delegate the setup of our_pred->args.printf_vec to either
336         open_output_file() (for parse_fprint and parse_fprint0) or
337         open_stdout (parse_print0).
338         (parse_fprint0): Use collect_arg().
339         (parse_print0): Use insert_fprint(), just like parse_fprint0.
340         (parse_printf): Use collect_arg().
341         (parse_fprintf): Use collect_arg().
343 2007-05-05  James Youngman  <jay@gnu.org>
345         * find/parser.c (parse_samefile): Hold a file descriptor open on
346         the reference file in order to prevent pred_samefile getting
347         fooled by inode reuse.  Pay attention to race conditions on
348         systems lacking O_NOFOLLOW when the -P option is in force.  This
349         fixes Savannah bug #19806.
351         * find/defs.h (struct samefile_file_id): New struct, like dir_id
352         but including a file descriptor on the reference file.
354         * find/pred.c (pred_type): -type should return false if the file
355         has mode 00000, as opposed to having an assertion failure.   This 
356         fixes Savannah bug #16378.
358         * find/ftsfind.c (consider_visiting): Issue a warning message if
359         none of the mode bits are set for a file (i.e. st_mode==00000).
360         * find/util.c (get_statinfo): ditto
361         * find/util.c (hook_fstatat): Introduced debug code (normally
362         disabled) for testing Savannah bug #16378.
363         
364 2007-05-01  James Youngman  <jay@gnu.org>
366         * find/find.c (wd_sanity_check): corrected the type of %ld fprintf
367         arguments in error messages.  
368         * find/fstype.c: include "error.h" for the declaratio of error().
369         * find/ftsfind.c: include "error.h" for the declaratio of
370         error().  Include dircallback.h for the correct declararion of
371         run_in_dir(). 
372         * find/parser.c: include getdate.h (for declaration of getdate)
373         and error.h (for the declaration of error).
374         (find_parser): Removed unused variable p.
375         * find/pred.c (pred_timewindow): Removed unused variable delta.
376         (do_fprintf): Removed unused variable cc.
377         * find/tree.c: Include error.h (for the declaration of error()).
378         (build_expression_tree): removed sourious extra arguments in call
379         to error().
380         * find/util.c: include error.h.  
381         * lib/buildcmd.h (get_line_max): Comment out unused function.
382         * lib/listfile.c: Include dircallback.h.
383         * locate/code.c: Include errno.h, erorr.h, progname.h and
384         xlloc.h. 
385         (inerr): New function for reporting read errors.
386         (outerr): New function for reporting output errors.
387         (main): Call inerror when fgets fails.  Call outerr when fwrite
388         or putc or putw fails.  
389         * locate/frcode.c (put_short): Return boolean value indicating
390         success.  
391         (outerr): New function for reporting write errors.
392         (main): Call outerr if call to putc() or puts() or put_short()
393         fails.    
394         * locate/locate.c (search_one_database): diagnose corruption if a
395         traditional-style database is too short to include a complete
396         bigram table.
398 2007-04-30  James Youngman  <jay@gnu.org>
400         * find/defs.h: Change all predicate functions to take a const
401         char* argument as the pathname, not a char*.  Modify the parser
402         table definition accordingly.
403         * find/parser.c: Ditto
404         * find/pred.c: Ditto
405         * find/pred.c (do_fprintf): copy the pathname string for the %H
406         and %h cases, since we can no longer modify the string in place.
407         * lib/listfile.c (print_name, list_file,
408         print_name_without_quoting, print_name_with_quoting): Use const
409         char * param for pathname.
410         * lib/listfile.h (list_file): Use const char * param for
411         pathname. 
413 2007-04-29  James Youngman  <jay@gnu.org>
414         
415         * find/defs.h: Declare fatal_file_error(), a function for
416         reporting immediately-fatal file errors, which appropriately
417         quotes the file name.  The function does not return.  Also define
418         ATTRIBUTE_NORETURN.  Record the currently-required quoting style
419         in struct options.
421         * find/find.c, find/ftsfind.c, find/parser.c, find/pred.c,
422         find/util.c: Call fatal_file_error() for fatal file errors.  Use
423         quotearg_n_style() to quote filenames which are used in error
424         message that aren't fatal.  Use options.err_quoting_style as the
425         quoting style.  This fixes Savannah bug #18203.
426         * locate/locate.c: ditto
427         * xargs/xargs.c: ditto
429         * lib/listfile.c: To use alloca, just #include <alloca.h>.  Gnulib
430         handles the rest.  Also these days, <stdlib.h> and <string.h> can
431         just be included unconditionally.
432         * lib/qmark.c: Fixed comment on first line describing the module.  
434 2007-04-29  Michael Haubenwallner <michael.haubenwallner@salomon.at> (Trivial Change)
436         * find/defs.h (pred_open) Rename to pred_openparen to avoid
437         problems with the macrtos which build the parser tabnles on
438         platforms where 'open' is in fact a macro whcih expands to
439         open64.   The problem was that token pasting put pred_open64 into
440         the parser table, but the function was still defined as
441         parse_open.   This fixes Savannah bug #19371.
442         (pred_close): ditto
443         * find/parser.c (parse_open, parse_close): ditto.  Also change
444         repferences to pred_open and pred_close similarly.
445         * find/parser.c (parse_openparen, parse_closeparen): ditto
447 2007-04-28  James Youngman  <jay@gnu.org>
449         * find/testsuite/find.gnu/deletedir.exp,
450         find/testsuite/find.gnu/deletedir.xo: New test.
451         * find/testsuite/find.gnu/deletefile.exp,
452         find/testsuite/find.gnu/deletefile.xo: New test.
453         * find/testsuite/Makefile.am: Distribute the new tests
454         deletefile.exp and deletedir,exp, with their expected-output (.xo)
455         files too.
456         * find/testsuite/config/unix.exp (find_start): Add a new "setup"
457         parameter called just before each time find is invoked.  This
458         allows last-minute tasks to be performed.  This feature is
459         essential for find commands that modify the filesystem, since
460         otherwise we cannot use our strategy of invoking both binaries at
461         each optimisation level.
462         
463         * find/util.c (optionh_stat, optionp_stat, optionl_stat): Assert
464         that state.cwd_dir_fd is valid.
466         * find/parser.c (parse_delete): Set need_stat to false, since we
467         don't need the stat information in pred_delete.
468         * find/pred.c (pred_delete): If unlinkat() with a zero flags
469         parameter fails with errno==EISDIR, just try again with
470         flags=AT_REMOVEDIR.  That way we normally avoid the cost of a
471         stat.  If we happen to have the stat information to hand anyway,
472         we make sure we get it right the first time.
474         * lib/buildcmd.c (bc_init_controlinfo): Eliminate confusing extra
475         variable arg_max.  Add return value
476         BC_INIT_CANNOT_ACCOMODATE_HEADROOM for the case where the
477         environment itself is not too large, but the required headroom
478         cannot also be accomodated.  The caller now passes in the amount
479         of headroom required.  
480         (bc_use_sensible_arg_max): Use the environment size consistently;
481         this is accounted for already in posix_arg_size_max, so there is
482         no need to re-measure the size of the environment.
483         * lib/buildcmd.h: Define BC_INIT_CANNOT_ACCOMODATE_HEADROOM and
484         add the headroom parameter to the prototype of bc_init_controlinfo().
485         * xargs/xargs.c (main): Define XARGS_POSIX_HEADROOM as 2048 and
486         use that symbolic value.  Pass XARGS_POSIX_HEADROOM to
487         bc_init_controlinfo().  Handle the case where
488         BC_INIT_CANNOT_ACCOMODATE_HEADROOM is returned by
489         bc_init_controlinfo().  
490         * find/parser.c (new_insert_exec_ok): Pass the required headroom to
491         bc_init_controlinfo() and handle the error return
492         BC_INIT_CANNOT_ACCOMODATE_HEADROOM.  
494         * xargs/xargs.1: Correct the description of the default value and
495         maximum value for the -s option of xargs.
497         * xargs/xargs.c (main): Modify the assertions not to assume that
498         bc_ctl.arg_max is 2KiB less than ARG_MAX, since sysconfig() may
499         have returned a value for _SC_ARG_MAX which is greater.  For
500         example, AIX 5.3 can do this.  This should fix Savannah bug
501         #19391. 
503 2007-04-25  James Youngman  <jay@gnu.org>
505         * find/tree.c (predlist_dump, predlist_merge_nosort): These
506         functions were unused and commented out.  Removed.
507         (mark_stat) No longer used.  Removed.
508         (mark_type) No longer used.  Removed.
509         
510         * find/parser.c (new_insert_exec_ok): When checking for {} in the
511         arguments to -exec..., use mbsstr() rather than strstr() in order
512         to cope bettwe with multibyte locales.
514         * lib/buildcmd.c: Don't define mbsstr() locally.  Instead, call
515         gnulib's mbsstr().
517 2007-04-24  James Youngman  <jay@gnu.org>
519         * lib/buildcmd.c: Added some comments outlining how we might
520         change the implementation to support figuring out the real ARG_MAX
521         limit.
523 2007-04-23  James Youngman  <jay@gnu.org>
525         * find/defs.h (struct predicate_performance_info): New data
526         structure for holding perofmance statistics.
527         (struct predicate: include predicate_performance_info
528         (apply_predicate): change from macro to function
529         (pred_is): new macro, for predicate identity testing
530         (enum DebugOption): Added DebugSuccessRates
531         * find/find.1: Document option "-D rates" which turns on 
532         DebugSuccessRates. 
533         * doc/find.texi: ditto
534         * find.c (main): Call show_success_rates() before exiting.
535         (apply_predicate): remove the macro defintion, declare equivalent
536         function in defs.h.
537         * find/ftsfind.c (main): Call show_success_rates() before
538         exiting.  Use apply_predicate().
539         (show_outstanding_execdirs): use pred_is().
541         
543 2007-04-22  Eric Blake  <ebb9@byu.net>
545         * xargs/xargs.c (main): Don't assume LINE_MAX exists (i.e. is
546         #defined).
548         * locate/updatedb.sh (PRUNEPATHS): Exclude /proc by default.
550 2007-04-22  James Youngman  <jay@gnu.org>
552         * doc/Makefile.am: When cross-compiling, 'make clean' should not
553         delete doc/regexprops.texi, becaue we can't regenerate it.  Fixes
554         Savannah bug #19658.
556         * locate/Makefile.am (BUILT_SOURCES): Automatically generate
557         dblocation.texi, which records the default database location.
558         * doc/find.texi: Collect the default database location from
559         ../locate/dblocation.texi, and use LOCATE_DB in various places.
560         Document the fact that updatedb can generate slocate-compatible
561         databases.  Document the --dbformat option of updatedb.
562         * locate/frcode.c (main): Implemented the -S option which allows the
563         generation of an slocate secure database.  
564         * locate/updatedb.sh: New option --dbformat which selects which
565         database format to use.   
566         * locate/updatedb.1 (--dbformat): Document the new option.
567         
569         * find/testsuite/find.gnu/access.exp: fixed a typo which prevented
570         the test correctly being skipped when run as root.   This re-fixes
571         Savannah bug# 18414, I hope.
573 2007-04-21  James Youngman  <jay@gnu.org>
575         * find/locate/locatedb.5: Clarifications to the description of the
576         LOCATE02 format.  Organised the material under a number of
577         headings.  Documented the slocate database format.
579 2007-04-21  James Youngman  <jay@gnu.org>
581         * find/testuite/Makefile.am (EXTRA_DIST_EXP): added
582         find/testsuite/find.posix/sv-bug-19617.exp
584 2007-04-20  Maxim V. Dziumanenko <dziumanenko@gmail.com>
586         * po/uk.po: New Ukranian translation.
587         * configure.in: Added "uk" for Ukranian.
589 2007-04-19  Peter Breitenlohner <peb@mppmu.mpg.de> (Trivial change)
591         * locate/bigram.c (main): Set the initial pathname to the empty
592         string, to avoid decompression problems if the initial pathname
593         begins with a space.  This fixes Savannah bug #19484.
594         * locate/code.c (main): ditto
596 2007-04-19  James Youngman  <jay@gnu.org>
598         * locate/updatedb.1 (--help): Option name should be bold, not
599         italic.
601         * find/testsuite/find.gnu/execdir-hier.exp: Avoid running 
602         -execdir based tests if "." is on $PATH.  Fixes Savannah bug
603         #19634.
604         * find/testsuite/find.gnu/execdir-in-unreadable.exp: ditto
606         * find/testsuite/config/unix.exp (touch): New procedure touch,
607         replacing "exec touch" for greater efficiency.
608         * find/testsuite/find.posix/depth1.exp: Change "exec touch" to
609         "touch".
610         * find/testsuite/find.posix/files-not-expressions1.exp: ditto
611         * find/testsuite/find.posix/files-not-expressions2.exp: ditto
612         * find/testsuite/find.posix/files-not-expressions3.exp: ditto
613         * find/testsuite/find.posix/links.exp: ditto
614         * find/testsuite/find.posix/perm-vanilla.exp: ditto
615         * find/testsuite/find.posix/sv-bug-15235.exp: ditto
616         * /find/testsuite/find.posix/sv-bug-19613.exp: ditto
617         
618         * find/testsuite/find.gnu/access.exp: Fix savannah bug #18414 by
619         skipping the test if the user can read any file (e.g. is root or
620         is an Admin user under Cygwin).
621         
622 2007-04-17  James Youngman  <jay@gnu.org>
624         * import-gnulib.config (gnulib_version): Use the 2007-04-17
625         version of gnulib to fix a compilation error on Cygwin.  This
626         fixes Savannah bug #19619.
627         
628         * find/testsuite/find.posix/sv-bug-19605.exp: New test, for
629         Savannah bug #19605.
630         * find/testsuite/find.posix/sv-bug-19617.exp: New test, for
631         Savannah bug #19617.
632         * find/ftsfind.c (consider_visiting): if fts_read() returns
633         enf->fts_info==FTS_NS, check for and diagnose a symbolic link
634         loop.  This fixes Savannah bugs #19605 and #19617.
636         * find/find.c (process_path): collect the stat information for
637         directories even if we already have the mode information, because
638         we need to use the members st_nlink and st_rdev in for the leaf
639         optimisation and loop detection, respectively.  This fixes
640         Savannah bug #19616.
642         * find/ftsfind.c (is_fts_enabled): Return a copy of ftsoptions,
643         not a copy of the (uninitialised) input argument.  This fixes
644         Savannah bug #19615.
646         * find/ftsfind.c (consider_visiting): If fts_read() returned
647         FTS_NS, then remember that the stat information is not valid, and
648         therefore don't set state.have_type or state.have_stat.  This
649         fixes Savannah bug #19613.
651         * find/testsuite/find.posix/sv-bug-91613.exp, 
652         * find/testsuite/find.posix/sv-bug-91613.xo: New test for Savannah
653         bug 19613 (assertion failure on symbolic link loop).
655         * find/testsuite/config/unix.exp: Correctly diagnose a test case
656         which fails because find was expected to fail and instead
657         succeeded.
658         * find/testsuite/find.gnu/exec-many-rtn-failure.exp: The child
659         process in this test should return non-zero, not zero.  Therefore
660         run "false" instead of "true".
661         
662 2007-04-15  James Youngman  <jay@gnu.org>
664         * find/find.1: "-printf %b": blocks are 512 bytes.   Fixes
665         Savannah bug #19596.
667         * doc/Makefile.am (regexprops.texi): Do not use $(RM) because many
668         versions od make do not set it, and so it expands to nothing.
669         This avoids suprious emission of the regexprops.texi file to stdout.
671         * find/find.c (main, safely_chdir_lstat, safely_chdir_nofollow):
672         Only use O_LARGEFILE if it is #defined (NetBSD-3.1 does not define
673         it).  
674         * find/ftsfind.c (main): ditto
675         * find/pred.c (pred_empty, prep_child_for_exec): ditto
678         * import-gnulib.config: Update to gnuliv 2007-04-14.
680         * lib/Makefile.am, import-gnulib.sh: Create lib/gnulib-version.c
681         in import-gnulib.sh, not in lib/Makefile.
683         * build-aux/Makefile.am: New file; distribute check-tstfiles.sh.
685         * locate/Makefile.am: mkinstalldirs is now in build-aux.
687         * doc/Makefile.am: We also need getdate.texi.
689 2007-04-14  James Youngman  <jay@gnu.org>
691         * doc/.cvsignore: Ignore getdate.texi
693         * find/defs.h: #include "buildcmd.h" near the top of the file, not
694         in the middle.
696         * all: Pass O_LARGEFILE when opening directories.
698         * all: Changes to allow us to use the FTS_CWDFD mode of fts().
699         These are quite extensive changes, and are detailed below.
701         * find/defs.h (struct exec_val): New member dirfd, the directory
702         in which the exec should take place.
703         (is_fts_enabled): Tell the caller which flags are passed to
704         fts_open().
705         (get_start_dirfd): New function.  Returns value of start_desc.
706         (get_current_dirfd): New function.  Returns the fd of the
707         directory fts is currently traversing.  If this is the current
708         directory, AT_FDCWD is returned.
709         (complete_pending_execdirs): takes a new argument, indicating
710         where the exec is to take place.  Ugh.
711         (get_info): the file name is taken from state.rel_pathname, so
712         we don't need it as a function argument.
713         (enum DebugOption): Added DebugExec ("-D exec").
714         (struct state): Added cwd_dir_fd, the directory we are examining
715         with fts().  If fts() is not in use, this is AT_FDCWD.  Also added
716         execdirs_outstanding, which is a boolean which tells us if there
717         are any not-yet-execed -execdir or -okdir actions (with +).  This
718         is not really used yet.
719         * find/ftsfind.c (set_close_on_exec): New function.
720         (get_current_dirfd): Return an fd open on the directory that fts()
721         is currently examining.
722         (left_dir): Signal that our previous ides of which dirctory fts is
723         searching is now out of date.
724         (inside_dir): Indicate which directory fts is now searching.
725         (complete_execdirs_cb): Callback for run_in_dir() to complete
726         pending execdirs in this directory.
727         (show_outstanding_execdirs): Supports "-D exec"
728         consider_visiting(): Do not allow building-up of pending execdirs,
729         as a workaround to Savannah bug #18466.
730         (ftsoptions): Make this a static module variable.
731         * find/parser.c (insert_exec_ok): New parameter describing which
732         directory the exec should occur in.
733         (parse_version): for FTS, add a list of options being used.
734         * find/pred.c (pred_and, pred_comma): No need to pass the relative
735         path name to get_info(), it can pull it from state.rel_pathname.
736         (pred_delete): use unlinkat().
737         (pred_empty): use openat().
738         (new_impl_pred_exec): Accept an fd parameter describing where the
739         exec is to take place.
740         (pred_executable, pred_writable, pred_readable): Use run_in_dir()
741         to ensure that access() is called in a working directory which is
742         suitable for the pathname we pass in.
743         (prep_child_for_exec): In the child process, change to the
744         appropriate directory becore the exec().
745         * find/util.c (debugassoc): Support "-D exec".
746         (get_info): No longer need to pass the relative path to
747         get_statinfo().
748         (do_complete_pending_execdirs): Refactored body of what used to be
749         complete_pending_execdirs().
750         (complete_pending_execdirs): Pull body out into
751         do_complete_pending_execdirs() and call that only if there is work
752         to do.
753         (fallback_stat, optionh_stat, optionp_stat, optionl_stat): Use fstatat().
754         (get_start_dirfd): New access function for starting_desc.
755         * find/testsuite/find.gnu/execdir-hier.exp: New test
756         * find/testsuite/find.gnu/execdir-hier.xo: Expected outut for new test
757         * lib/dircallback.c, lib/dircallback.h: New function,
758         run_in_dir(), which runs a callback function in a specified
759         directory.      
760         * lib/listfile.c: Use run_in_dir() to call readlink() in the right
761         directory.
762         (get_link_name_at): Call get_link_name_cb via run_in_dir.
763         (get_link_name_cb): New callback function, wrappting
764         get_link_name().
765         
766         * find/testsuite/find.gnu/execdir-pwd.exp: Since we have disabled
767         thebuilding-up of command lines for -execdir, Savannah bug #18466
768         has been neutralised (but not fixed - we just don't allow the
769         problem circumstance to occur).
770         
771 2007-04-09  James Youngman  <jay@gnu.org>
773         * doc/find.texi: Change fully-specified @node directives to
774         single-argument @node directives in order to accomodate the
775         inclusion of getdate.texi.
777         * doc/find.texi: Document -newerXY.
779         * doc/find.texi (Security Considerations): updated to describe
780         differences in the fts-based implementation.
782         * find/find.1: Indicate that testing the birth time where this is
783         not supported produces a negative result for files where the birth
784         time is not known (or a fatal error if the file of interest is a
785         reference file).
786         
787 2007-04-08  James Youngman  <jay@gnu.org>
789         * configure.in: Set @AUXDIR@ (to the location of the build-aux
790         directory).
791         * build-aux/check-testfiles.sh: New script, which checks that all
792         the DejaGnu test files have been included in the distribution and
793         (more helpfully) lists any that are missing.
794         * Makefile.am (findutils-check-testfiles): Use
795         build-aux/check-testfiles.sh.
796         * locate/testsuite/Makefile.am (EXTRA_DIST_EXP): distribute 
797         locate/testsuite/locate.gnu/sv-bug-14535.exp. 
799         * config.rpath, depcomp, missing: Moved into build-aux/.
800         * configure.in(AC_CONFIG_AUX_DIR): Find aux files in $SRCDIR/build-aux,
801         not in $SRCDIR.
803 2007-03-31  James Youngman  <jay@gnu.org>
805         * find/tree.c (build_expression_tree): Issue more specific error
806         messages; distinguish the case where the predicate is invalid from
807         the cases where a required argument is missing, and a supplied
808         argument is invalid.
810         * import-gnulib.config (gnulib_version): Update to 2007-03-30
811         version of gnulib.
813 2007-03-28  James Youngman  <jay@gnu.org>
815         * find/defs.h (set_stat_placeholders): utility function for
816         initialising the sturct stat fields that NetBSD doesn't always set
817         (like st_birthtime where the file is on a filesystem not
818         supporting birthtime).
819         * find/util.c: set_stat_placeholders(): new function
820         (get_statinfo): Call set_stat_placeholders().
821         (optionh_stat, optionl_stat, optionp_stat): ditto
822         * find/find.c (main, wd_sanity_check, safely_chdir_lstat,
823         process_dir): use set_stat_placeholders().
824         * find/parser.c (parse_anewer, parse_cnewer, parse_newer,
825         parse_newerXY): ditto.
826         (get_stat_Ytime): Support birth time ('B').
827         (parse_newerXY): Support st_birthtime.
828         * find/fstype.c (set_fstype_devno): Use set_stat_placeholders().
829         * find/pred.c (pred_xtype): Use set_stat_placeholders().
830         (pred_newerXY): Support birth time.
831         (pred_fprintf, format_date): ditto ("%Bx").
833 2007-03-25  James Youngman  <jay@gnu.org>
835         * xargs/xargs.c (main): For "xargs --show-limits" where stdin is a
836         terminal, warn the user that the program specified (or /bin/echo)
837         will be run at least once, if that is what will happen.
839 2007-03-24  James Youngman  <jay@gnu.org>
841         * import-gnulib.sh: Added option -d, allowing the user to use a
842         local version of gnulib, perhaps because they have local changes.
843         
844 2007-03-13  James Youngman  <jay@gnu.org>
846         * find/parser.c (parse_quit): Estimated success rate of -quit is
847         100%.
849 2007-03-08  James Youngman  <jay@gnu.org>
851         * find/find.1 (TESTS): Document -newerXY, indicate that reference
852         files are only examined once.
853         (HISTORY): Indicate when various features were added
854         (BUGS): Indicate that -ok ignores LC_COLLATE.
856 2007-03-07  James Youngman  <jay@gnu.org>
858         * import-gnulib.config: (gnulib_version): Use gnulib version
859         2007-03-05
860         (modules): Added getdate
862         * find/Makefile.am (LDADD): Added @LIB_CLOCK_GETTIME@ for
863         clock_gettime(), if it is available.
865         * find/defs.h: (enum xval): New enumeration, representing the
866         value of X used in the -newerXY test.  It is stored in the reftime
867         member of 'union args'.
868         (struct predicate): reftime is also used by -newerXY.
869         (enum arg_type): Added ARG_SPECIAL_PARSE for -newerXY, because the
870         parsing function needs to look at the name of the test.
871         (struct options): start_time is now a struct timespec, not a
872         time_t. 
874         * find/parser.c: (parse_newerXY): New parsing function for
875         -newerXY, a feature copied from FreeBSD (also present other BSD
876         implementations too)
877         (get_stat_Ytime): New function; returns st_atime, st_mtime or
878         st_ctime from struct stat, as a timespec, as required according to
879         the value of Y in -newerXY.
880         (found_parser): Factored the tail out of find_parser.
881         (find_parser): Moved tail into found_parser.  Add special handling
882         for -newerXY.
883         (do_parse_xmin): New argument xv, indicating the value to which
884         predicate->reftime.xval should be set.
885         (parse_amin): Pass XVAL_ATIME to do_parse_xmin.
886         (parse_cmin): Pass XVAL_CTIME to do_parse_xmin.
887         (parse_mmin): Pass XVAL_MTIME to do_parse_xmin.
888         (parse_newer): Set args.reftime.xval to XVAL_MTIME.
889         
890         * find/pred.c (pred_table): added pred_XY.
891         (pred_fls): options.start_time is now a struct timespec, so just
892         pass the tv_sec member to list_file.
893         (pred_ls): ditto
894         (pred_newerXY): New function, implementing -newerXY.
896         * find/tree.c (costlookup): pred_newerXY needs stat information.
897         (build_expression_tree): For predicates of type ARG_SPECIAL_PARSE,
898         pass them in the name of the predicate (that is, don't advance
899         argc).
901         * find/util.c (now): New function for setting options.start_time.
902         Use nanoseconds where it is available.
903         (set_option_defaults): Use now() rather than time().
905 2007-03-03  James Youngman  <jay@gnu.org>
907         * import-gnulib.sh: Pass --with-tests to gnulib-tool so that relevant
908         gnulib unit tests are built and are run for "make check".  
910         * configure.in (AC_CONFIG_FILES): Add tests/Makefile (the makefile
911         for the gnulib unit tests).
913         * Makefile.am: Add 'tests' to SUBDIRS.
915         * .cvsignore: Add 'tests'.
916         
917         * import-gnulib.config (modules): Also use Gnulib modules
918         mbscasestr and mbsstr in order to perform correct string searching
919         in multibyte strings, in order to fix Savannah bug #14535.
921         * locate/testsuite/locate.gnu/sv-bug-14535.exp: new test case for
922         Savannah bug #14535.
923         
924         * locale/locate.c (visit_substring_match_nocasefold): Use mbsstr
925         rather than strstr, in order to correctly support multibyte
926         strings.  
927         (visit_substring_match_casefold): Use mbscasestr rather than
928         strstr in order to correctly support case-folding in a multibyte
929         environment (e.g. with UTF-8 characters outside the normal ASCII
930         range).  This fixes Savannah bug #14535.
931         (struct casefolder): No longer needed, removed
932         (visit_casefold): No longer needed, removed.
933         (lc_strcpy): No longer needed, removed.
934         (search_one_database): Removed redundant variable need_fold and
935         the code which used to set it.  It had controlled the adding of
936         the visitor function visit_casefold, but that function itself is
937         no longer required.  Also there is now no need to pass in a
938         lower-case argument to visit_substring_match_casefold, so don't
939         pass that in the context argument.
941         * locate/locate.c (usage): Fixed typo.
942         
943 2007-03-01  James Youngman  <jay@gnu.org>
945         * doc/find.texi (Multiple Files): Document the construct
946         -exec sh -c 'cmd "$@" final-args' {} + - fixing Savannah bug
947         #18554.
948         
949 2007-02-28  James Youngman  <jay@gnu.org>
951         * import-gnulib.config: New file.  Specifies which version of
952         Gnulib we need to check out and build from.
953         
954         * import-gnulib.sh: Use import-gnulib.config.
955         
956         * README-CVS: Describe the new method of building from CVS.
957         
958         * lib/gnulib-version.h, lib/gnulib-version.sh: New files; code for
959         reporting which version of Gnulib we built findutils from.
960         
961         * lib/Makefile.am: Build gnulib-version.c out of
962         ./gnulib-version.config by using lib/gnulib-version.sh.
963         
964         * Makefile.am: Ship import-gnulib.config and import-gnulib.sh.
965         
966         * .cvsignore: Ignore gnulib-cvs
967         
968         * lib/.cvsignore: Ignore gnulib-version.c
969         
970         * find/parser.c, locate/code.c, locate/locate.c, xargs/xargs.c:
971         Report which version of Gnulib we were built from.
973 2007-02-25  James Youngman  <jay@gnu.org>
975         * find/find.c (process_dir): Removed duplicated (shadow)
976         declaration of did_stat.  Assert that we did not use subdirs_left
977         if subdirs_unreliable is true.
979         * find/parser.c (parse_size): Removed unused variable rate.
980         (parse_time): Removed unused variable num_days_approx.
981         (get_num): Removed unused variables ok and suffixes.
983         * find/pred.c (do_fprintf): Indicate that the function needs a
984         return value (referring to Savannah bug #19146).
986         * find/tree.c (predlist_dump): Commented out unused function
987         (predlist_merge_nosort): Commented out unused function
988         (getrate): Returns type is float, so return 1.0f not 1.0.
989         (calculate_derived_rates): Removed unused variable rate.  Use a
990         switch statement rater than ifs.
992         * find/util.c (usage): Removed unused variable i.
994         * lib/buildcmd.c (bc_do_insert): Removed unused variable
995         need_prefix.
996         (bc_init_controlinfo): annotate a line (with #warning) which is
997         probably a bug.
999         * locate/locate.c: #include <grp.h> for the benefit of the
1000         setgroups() call in drop_privs.
1001         (slocate_db_pathname): Commented out unused variable.
1002         (set_max_db_age): error command has no format directive, so
1003         remove the unused extra argument.
1004         (looking_at_slocate_db): Removed unused variables magic and
1005         lenwanted.  Fix bug where result is indeterminate (due to falling
1006         off the end of the function) if the first character is a nondigit.
1007         (search_one_database): Eliminate (spurious) compiler warning
1008         rlating to possible use before initialisation of slocate_seclevel.
1010         * xargs/xargs.c (get_char_oct_or_hex_escape): Eliminate spurious
1011         compiler warning on variable p.
1012         (main): Removed unused varible env_too_big
1015 2007-02-24  James Youngman  <jay@gnu.org>
1017         * find/parser.c (pred_sanity_check): define this function even for
1018         _NDEBUG, but do nothing in that case.
1019         (estimate_timestamp_success_rate): correct (invert) the sense of
1020         the subtraction used to find the file's age.
1022         * import-gnulib.sh (findutils_modules): Import Gnulib modules
1023         xstrtod and timespec.
1025         * find/parser.c (get_comp_type): Refactored out of get_num.
1026         (get_num): call get_comp_type to find the comparison type.
1027         (get_relative_timestamp): new function replacing get_num_days.
1028         (get_num_days): Remove.
1029         (do_parse_xmin): Support fractional arguments and
1030         nanosecond timestamps.
1031         (parse_used): ditto
1032         (parse_time): ditto
1034         * xargs/xargs.c (read_line): Give a warning message if a NUL is
1035         found in the input (this function is called only when -0 is not in
1036         effect).
1038         * xargs/xargs.c (nullwarning_given): New variable indicating if
1039         the NULL character warning had already been issued.
1041         * doc/find.texi (Multiple Files): Describe how trailing blanks are
1042         handled when -L is in effect.
1043         
1044         * xargs/xargs.c (read_line): Use an enum rather than
1045         preprocessor macro values for the lexer state.
1047         * lib/savedirinfo.c (free_dirinfo): Fixed memory leak (trivial
1048         patch from Supriya Kannery)
1050 2007-01-22  James Youngman  <jay@gnu.org>
1052         * .cvsignore (install-sh): Ignore, since the install-sh file is no
1053         longer held in the findutils CVS repository.
1054         
1055         * find/testsuite/config/unix.exp (find_start): allow a test to be
1056         skipped for either the old or the new find executable.
1057         * find/testsuite/find.gnu/execdir-pwd.exp,
1058         find/testsuite/Makefile.am: 
1059         New test, covering Savannah bug #18466.  This test currently fails 
1060         for the ftsfind binary and passes for the oldfind binary.  Due to 
1061         a limitation in  the way that we perform the test, we can't tell
1062         the test suite to expect a failure in the new binary but not the
1063         old.  Therefore we skip the test for the old binary. 
1065         * lib/regeprops.c (describe_regex_syntax): fixed a typo in the text
1066         * doc/find.texi (Multiple Files): fixed a typo
1068 2007-01-16  James Youngman  <jay@gnu.org>
1070         (ctime_format): format the time manually (rather than using ctime)
1071         in order to include the sub-second part of the time.
1072         (weekdays, months): new static variables used by ctime_format.
1073         (format_date): append a the sub-second part of the timestamp to
1074         the seconds part of date/time output.
1075         
1076 2007-01-15  James Youngman  <jay@gnu.org>
1078         * find/defs.h (time_val): define struct; use timespec to hold time
1079         in the 'reftime' member.
1080         (args): use struct timespec instead of time_t for predicates
1081         -newer, -anewer, -cnewer.  * find/parser.c (includes): include
1082         stat-time.h.
1083         (parse_anewer, parse_cnewer, parse_newer): use struct timespec to
1084         hold timestamps.  * find/pred.c (compare_ts): new function for
1085         comparing timestamps in struct timespec.
1086         (pred_anewer, pred_cnewer, pred_newer): use compare_ts() to
1087         compare timestamps (hence takinng acoung of sub-second
1088         granularity).
1089         * find/ftsfind.c: Various improvements to comments.
1090         (is_fts_enabled): Newline before function name to comply with GNU
1091         coding standard.
1093 2007-01-13  James Youngman  <jay@gnu.org>
1095         * lib/regexprops.c (describe_regex_syntax): fixed typo
1096         
1097         * xargs/xargs.c (read_line): Fixed Savannah bug# 18714; VT and FF
1098         are not separators, according to POSIX (in the POSIX locale).
1100         * xargs/testsuite/Makefile.am,
1101           xargs/testsuite/input/formfeeds.xi, 
1102           xargs/testsuite/input/verticaltabs.xi, 
1103           xargs/testsuite/xargs.posix/sv-bug-18714.exp, 
1104           xargs/testsuite/xargs.posix/sv-bug-18714.xo, 
1105           xargs/testsuite/xargs.posix/sv-bug-18714b.exp, 
1106           xargs/testsuite/xargs.posix/sv-bug-18714b.xo: Tests for Savannah
1107           bug #18714.
1109         * xargs/xargs.c (usage): Removed suprious "[" in --help output
1110         (fixes Savannah bug #18384).
1112         * locate/locate.c: Implement the option --max-database-age.
1113         (main) Accept the option. 
1114         (set_max_db_age): Parse the argument.
1116         * locate/locate.c (dolocate): If the database is more than N days
1117         old, indicate its actual age in the warning message we produce.
1119         * locate/locate.1, docs/find.texi: Document --max-database-age
1121         * THANKS: Thank Dean Gaudet for the idea of -sparse.
1123         * po/findutils.pot: Updated from Translation Project
1125         * po/ga.po, po/pl.po, po/nl.po, po/tr.po, po/hu.po: Updated from
1126         the Translation Project
1128 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> 
1130         * doc/find.texi: Fix some typos. (trivial change)
1132 2007-01-07  James Youngman  <jay@gnu.org>
1134         * find/parser.c (parse_perm), find/testsuite/find.gnu/perm000.exp,
1135           find/testsuite/find.gnu/perm000.xo: -perm /000 is now quivalent
1136           to -perm -000, as dscussed in Savannah bug #14748.  The warning
1137           message we issue when the user does this now explains that the
1138           defintion changed as we promised it would in 2005.
1140         * xargs/xargs.c (read_line): Correctly handle quoted empty
1141         arguments occurring first or last on a line (by adding an empty
1142         argument to the output).  Fixes Savannah bug #18713.
1144         * xargs/testsuite/xargs.sysv/sv-bug-18713.exp,
1145         xargs/testsuite/xargs.sysv/sv-bug-18713.xo,
1146         xargs/testsuite/input/empty.xi: Test case for Savannah bug #18713.
1147          
1149 2006-12-29  James Youngman  <jay@gnu.org>
1151         * find/testsuite/config/unix.exp:
1152         Verify that find_start is invoked with wither a p (pass) or an f
1153         (fail) argument.
1155         * lib/listfile.c, lib/listfile.h:
1156         define find_blocksize() and provide a declaration for get_link_name()
1158         * find/testsuite/config/unix.exp: Updated copyright years.
1160         * find/testsuite/find.gnu/execdir-one.exp, find/testsuite/find.gnu/execdir-root-only.exp, find/testsuite/find.gnu/sv-bug-12230.exp, find/testsuite/find.gnu/sv-bug-17782.exp, find/testsuite/config/unix.exp:
1161         Avoid tests using -execdir if $PATH contains a relative directory
1163         * find/parser.c:
1164         Also flag $PATH values containing relative directories as being dangerous.
1166         * find/parser.c, find/defs.h, find/util.c:
1167         Instead of selecting the old or new exec handling code with the NEW_EXEC macro, just use the new code all the time
1169         * locate/testsuite/config/unix.exp:
1170         Fixed Savannah bug #13252, test suite failure caused by the fact that 'file normalize' is not available in Tcl 8.3
1172         * NEWS, find/pred.c:
1173         Fixed Savannah bug #18433, compilation failure with configure --enable-debug
1175 2006-12-28  James Youngman  <jay@gnu.org>
1177         * NEWS: Document addition of %S.
1179         * find/defs.h, find/find.1, find/parser.c, find/pred.c:
1180         Implemented %S (sparseness) printf format, and general refactoring and cleanup of printf predicate
1182 2006-12-01  James Youngman  <jay@gnu.org>
1184         * NEWS, configure.in: Begin work on findutils 4.2.30
1186         * find/find.c:
1187         Fix compilation error for oldfind if --enable-debug was passed to configure
1189         * NEWS, configure.in: Prepare for work on findutils-4.3.3
1191 2006-11-25  James Youngman  <jay@gnu.org>
1193         * find/testsuite/Makefile.am: Added test case for Savannah bug #17782
1195         * doc/textinfo.tex: Removed; we now use the version supplied 
1196         by automake.
1197         
1198         * m4/mkinstalldirs.m4: Added this file.  It's an excerpt from an
1199         old version of gnulib's m4/nls.po file.  The current version of
1200         gnulib does not expand MKINSTALLDIRS, but gettext-0.14.6's version
1201         of po/Makefile.in.in expects it to be expanded.  This m4 file
1202         fills the gap.
1204 2006-11-20  James Youngman  <jay@gnu.org>
1206         * po/et.po, po/bg.po, po/pl.po, po/nl.po, po/tr.po: Updated
1207         translations for Bulgarian, Estonian, Dutch, Polish and Turkish.
1209 2006-11-08  James Youngman <jay@gnu.org>
1211         * find/testsuite/Makefile.am:
1212         Oops, indicate the right directory for the new test files
1214         * ChangeLog, depcomp, doc/texinfo.tex, find/ftsfind.c, find/testsuite/Makefile.am, find/testsuite/find.gnu/sv-bug-18222.exp, find/testsuite/find.gnu/sv-bug-18222.xo, install-sh:
1215         Savannah bug#18222 - test case
1217         * ChangeLog, lib/buildcmd.c:
1218         Fixed Svannah bug #17782 ('./' prefix added at start of arg while it should be added at the start of the expansion of {})
1220         * find/ftsfind.c (process_all_startpoints): Set
1221         state.starting_path_length for every pathname argument.
1222         This fixes Savannah bug #18222.
1224         * find/pred.c (pred_prune): -prune should have an effect only if we are
1225          currently considering a directory (Savannah bug #15531).
1226         
1227 2006-10-15  James Youngman <jay@gnu.org>
1229         * lib/buildcmd.c: Fixed Savannah bug #17782, in which "find
1230         -execdir echo "foo {}" runs 'echo ./foo filename' instead of the
1231         correct command 'echo foo ./filename'.
1232         
1233         * po/hu.po, po/sl.po: Updated Hungarian and Slovenian po files
1235 2006-08-21  James Youngman <jay@gnu.org>
1237         * find/parser.c, find/testsuite/Makefile.am, find/testsuite/find.gnu/sv-bug-17490.exp:
1238         Fixed Savannah bug #17490, which was a coiredump when -regex ZZZ was the final test on the command line
1240 2006-08-20  James Youngman <jay@gnu.org>
1242         * find/parser.c: Merged the fix for the trailing % in "find -printf".
1244 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
1246         Port recent fixes for symbolic modes involving X from gnulib,
1247         and clarify the documentation in this area.
1248         * doc/find.texi: Use "file mode bits" when talking about
1249         all the file mode bits (including setuid, setgid, and sticky),
1250         and "permissions" when talking only about permissions bits
1251         (read, write, execute/search).  Use "execute/search" to
1252         talk about the x bit, since it means both.  You do not need
1253         permission to the linked-to file to follow a symlink for
1254         syscalls like "stat", but you do need search permission for
1255         the directories you traverse.  Clarify the explanation of
1256         -perm.  Use "that" instead of "which" when "which" isn't
1257         quite correct English.
1258         (Mode Bits): Renamed from Permissions.  All uses changed.
1259         * doc/perm.texi: Sync from coreutils 6.0.
1260         * find/defs.h (struct perm_val.val): Now an array of two items,
1261         one for non-directories, and one for directories.  This is
1262         to handle symbolic modes like +X correctly.
1263         * find/parser.c (parse_perm): Likewise.  Also, adjust to
1264         latest gnulib interface for mode_adjust.
1265         * find/pred.c (pred_perm): Likewise.
1266         * find/testsuite/Makefile.am (EXTRA_DIST_XO): Add find.posix/perm-X.xo.
1267         (EXTRA_DIST_EXP): Add find.posix/perm-X.exp.
1268         * find/testsuite/find.posix/perm-X.exp: New file.
1269         * find/testsuite/find.posix/perm-X.so: New file.
1271 12006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
1273         Port to latest gnulib, and simplify the bootstrapping procedure.
1274         * intl: Remove this directory and everything in it.
1275         * depcomp, install-sh, missing, mkinstalldirs, doc/texinfo.tex:
1276         Remove these files from CVS, as they are now gotten from gnulib.
1277         * README-CVS: Don't recommend "autoreconf -i", as it doesn't work
1278         for us.
1279         * import-gnulib.sh (findutils_files): New var.  Grab this stuff
1280         from gnulib.
1281         (findutils_modules): Add fopen-safer; remove stdio-safer.  This
1282         adjusts to latest gnulib.
1283         (modules): Remove obsolete reference to intl_modules.
1284         * .cvsignore: Remove stamp-h; add stamp-h1.
1285         * doc/.cvsignore: Add regexprops.texi.
1286         * find/.cvsignore: Add oldfind.
1287         * lib/.cvsignore: Add .deps, regexprops.
1288         * m4/.cvsignore: Add Makefile.
1289         * po/.cvsignore: Add stamp-po.
1291 2006-08-19  James Youngman <jay@gnu.org>
1293         * locate/testsuite/config/unix.exp, locate/testsuite/locate.gnu/bigprefix1.exp:
1294         Explicit checks for parefixes which are within range of a short, but outside the one-byte range
1296         * locate/testsuite/locate.gnu/bigprefix1.exp, locate/testsuite/locate.gnu/exceedshort.exp, locate/testsuite/locate.gnu/space1st.exp:
1297         New file.
1299         * locate/testsuite/Makefile.am, locate/testsuite/locate.gnu/exceedshort.exp, locate/testsuite/locate.gnu/space1st.exp:
1300         Patch from Tavis Ormandy; check frcode handles initial space end encodes paths with more than 2^16 characters in the common prefix (trivial change)
1302         * locate/frcode.c: Changes to avoid overflows
1304 2006-08-11  James Youngman <jay@gnu.org>
1306         * locate/frcode.c:
1307         Avoid producing an invalid database if the first item begins with a space
1309 2006-08-10  James Youngman <jay@gnu.org>
1311         * find/pred.c, import-gnulib.sh, lib/listfile.c:
1312         Updated callers of the gnnulib filemode module so that they work with the 2006-07-09 version of gnulib
1314         * config.rpath: Updated config.rpath from autotools
1316 2006-08-08  James Youngman <jay@gnu.org>
1318         * locate/locatedb.h:
1319         Automatically verify (at compile time) that the frcode datastream
1320         cannot get desynchronised.
1322         * find/ftsfind.c:
1323         Fixed Savannah bug #10494 (-maxdepth does not yield the same stat savinf in ftsfind as oldfind)
1325         * find/ftsfind.c: display fts_level for find -D search
1327         * find/util.c: Support find -D search
1329         * locate/locate.c:
1330         If the user specified -E but the database is an slocate database, do
1331         not produce a list of files they cannot stat.  Issue an error message
1332         explaining the problem.
1334         * locate/locate.c:
1335         Issue states messages in a way which indicates more clearly what's
1336         happening when the numbers are reduced because not every filename
1337         matched the pattern.
1339         * locate/locate.c: Better error checking in drop_privs().
1341 2006-08-07  James Youngman <jay@gnu.org>
1343         * NEWS, locate/locate.c, locate/locatedb.h:
1344         Added support for slocate database format
1346         * xargs/xargs.c:
1347         Removed unused code (tivial patch from Miloslav Trmac).
1349         * xargs/xargs.c: Removed unused code.
1351         * doc/find.texi:
1352         Clarify that the output format for locate -S differs from BSD's.
1354         * NEWS, find/find.1:
1355         Savannah bug #15360: explain global vs. positional options more clearly in the manual page
1357         * NEWS: Typo in subsection header (* should be **).
1359         * NEWS, find/find.1:
1360         Savannah bug #15360: explain global vs. positional options more clearly in the manual page
1362         * doc/find.texi: Fixed some clumsy phrasing
1364         * NEWS, configure.in:
1365         Now diverging again from the released tarball, so change once more to -CVS version number suffixes
1367 2006-08-06  James Youngman <jay@gnu.org>
1369         * locate/locate.c: Fixed a typo in a comment.
1371         * NEWS, configure.in: Moving on towards 4.3.2...
1373         * find/testsuite/config/unix.exp:
1374         Check that we can see the find.o file in the right position relative
1375         to $base_dir to ensure that we are indeed testing the program we just built.
1377         * find/testsuite/config/unix.exp:
1378         Be more paranoid about whether we're really checking the right version
1379         of find.
1381         * NEWS, configure.in: Prepare for release of 4.3.1
1383         * doc/find.texi: Document the -O and -D options
1385         * find/defs.h, find/find.1, find/util.c:
1386         'find -D help' now explains the available debugging options
1388         * po/be.po, po/bg.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
1389         Make dist changed all the po files again
1391 2006-08-05  James Youngman <jay@gnu.org>
1393         * NEWS: Described more changes in 4.3.1.
1395         * locate/testsuite/config/unix.exp:
1396         Set the  environment variable so that updatedb knows where to find it; it's not in BINDIR yet during 'make check'
1398         * po/be.po, po/bg.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
1399         Make dist changed all the po files again :)
1401         * po/et.po, po/vi.po: UPdated the Estonian and Vietnamese translations
1403         * NEWS, configure.in: Prepare for release of findutils-4.2.28
1405         * po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/be.po, po/bg.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po:
1406         Make dist changed all the po files again :)
1408         * configure.in: Added Bulgarian translation.
1410         * po/bg.po: Include Bulgarian translation
1412         * configure.in: Added Bulgarian translation.
1414         * po/et.po, po/vi.po: Updated Estonian and Vietnamese translations
1416         * NEWS: Removed spurious comma.
1418         * NEWS: Listed the updated translations.
1420         * find/parser.c, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
1421         Fixed Savannah bug#16738, find does not subtract environment size in find .. -exec {} +
1423         * NEWS: Updated the list of bugfixes etc.
1425 2006-06-15  James Youngman <jay@gnu.org>
1427         * NEWS: Described recent changes
1429         * configure.in: fix to how we invoke the gnulib regex module
1431         * find/find.1:
1432         Savannah bug #16269: avoid confusion over what type of quotes to use
1433         in an example.
1435         * find/parser.c: Option -nowarn should not itself produce a warning
1437         * find/defs.h: Remoevd useless declaration of last_pred
1439 2006-06-14  James Youngman <jay@gnu.org>
1441         * po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
1442         Updated translation files ga pl sv tr nl ca vi bg fr
1444         * locate/updatedb.sh:
1445         Fixed Savannah bug #16579 (su false should be su -c false)
1447 2006-04-01  James Youngman <jay@gnu.org>
1449         * find/find.c:
1450         Fixed Savannah bug #15800: "Hard link count is wrong" reports wrong
1451         directory name.
1453 2006-03-31  James Youngman <jay@gnu.org>
1455         * po/hu.po: Updated Hungarian translation
1457 2006-01-04  James Youngman <jay@gnu.org>
1459         * find/testsuite/find.posix/sizetype.exp, find/testsuite/find.posix/sizetype.xo, find/testsuite/find.posix/typesize.exp, find/testsuite/find.posix/typesize.xo:
1460         Additional tests for -type -size and -size -type
1462         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/ftsfind.c, find/parser.c, find/pred.c, find/testsuite/Makefile.am, find/testsuite/config/unix.exp, find/testsuite/find.gnu/depth-d.exp, find/tree.c, find/util.c, po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
1463         Initial implementation of a cost-based optimiser
1465 2005-12-23  James Youngman <jay@gnu.org>
1467         * find/parser.c: Refactor of parse_[acm]time
1469         * find/defs.h, find/find.c, find/finddata.c, find/ftsfind.c, find/tree.c, find/util.c:
1470         last_pred can be a static in tree.c rather than a global variable
1472         * find/tree.c, find/finddata.c:
1473         Moved some global data out of finddata.o and into static variables in tree.c
1475         * NEWS, find/find.c, find/fstype.c, find/ftsfind.c, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h, lib/regexprops.c, lib/regextype.c, lib/regextype.h, lib/savedirinfo.c, locate/locate.c, xargs/xargs.c:
1476         Fixed many compilation warnings
1478         * find/find.c, find/ftsfind.c, find/util.c:
1479         Evaluating the predicates can change the contents of the data structure (for example to add another exec item)
1481         * find/defs.h, find/find.c, find/ftsfind.c, find/tree.c, find/util.c:
1482         Re-factored a lot of common expression-handling code out of find.c and ftsfind.c, mainly into tree.c
1484         * find/find.c, find/ftsfind.c, find/tree.c:
1485         Savannah bug #15271: more helpful error messages for cases where there is a missing expression
1487 2005-12-20  James Youngman <jay@gnu.org>
1489         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/ftsfind.c, find/testsuite/Makefile.am, find/testsuite/find.posix/sv-bug-15235.exp, find/testsuite/find.posix/sv-bug-15235.xo, find/tree.c, find/util.c:
1490         Savannah bug #15195: more helpful error messages for 'find . ( )' or 'find . \!'
1492         * ChangeLog: Added entries for recent changes.
1494         * find/defs.h, find/find.c, find/ftsfind.c, find/testsuite/find.posix/bracket-depth.exp, find/util.c:
1495         Further fix to bug# 15235: a leading comma is a filename not an expression
1497         * find/defs.h, find/parser.c, find/testsuite/Makefile.am, find/testsuite/find.posix/empty-parens.exp, find/tree.c:
1498         Accept 'find ( -depth )' but reject 'find ( )'
1500         * po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po, po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
1501         did make dist
1503         * find/testsuite/find.gnu/delete.exp:
1504         Use the new find program, and the new way of locating it (/ instead of )
1506         * find/testsuite/Makefile.am: Added bracket-depth.exp.
1508         * NEWS, configure.in: We have moved on from 4.3.0
1510         * find/defs.h, find/find.c, find/ftsfind.c, find/testsuite/Makefile.am, find/testsuite/find.gnu/delete.exp, find/testsuite/find.posix/files-not-expressions1.exp, find/testsuite/find.posix/files-not-expressions1.xo, find/testsuite/find.posix/files-not-expressions2.exp, find/testsuite/find.posix/files-not-expressions2.xo, find/testsuite/find.posix/files-not-expressions3.exp, find/testsuite/find.posix/files-not-expressions3.xo, find/util.c:
1511         Avoid getting confused by filename arguments of which the first
1512         character looks like a predicate, for example ',x' or '!x' or
1513         '(x' (Savannah bug #15235).
1515 2005-12-20  James Youngman <jay@gnu.org>
1517         * find/defs.h, find/find.c, find/ftsfind.c,
1518         find/testsuite/find.posix/bracket-depth.exp, find/util.c: Further
1519         fix to bug# 15235: a leading comma is a filename not an expression
1521         * find/defs.h, find/parser.c, find/testsuite/Makefile.am,
1522         find/testsuite/find.posix/empty-parens.exp, find/tree.c: Accept
1523         'find ( -depth )' but reject 'find ( )'
1525         * find/testsuite/find.gnu/delete.exp: Use the new find program,
1526         and the new way of locating it ($OLDFIND/$FTSFIND instead of $FIND)
1528         * find/testsuite/Makefile.am: Added bracket-depth.exp.
1530         * NEWS, configure.in: We have moved on from 4.3.0
1532         * find/defs.h, find/find.c, find/ftsfind.c,
1533         find/testsuite/Makefile.am, find/testsuite/find.gnu/delete.exp,
1534         find/testsuite/find.posix/files-not-expressions1.exp,
1535         find/testsuite/find.posix/files-not-expressions1.xo,
1536         find/testsuite/find.posix/files-not-expressions2.exp,
1537         find/testsuite/find.posix/files-not-expressions2.xo,
1538         find/testsuite/find.posix/files-not-expressions3.exp,
1539         find/testsuite/find.posix/files-not-expressions3.xo, find/util.c:
1540         Avoid getting confused by filename arguments of which the first
1541         character looks like a predicate, for example ',x' or '!x' or '(x'
1542         (Savannah bug #15235).
1544 2005-12-19  James Youngman <jay@gnu.org>
1546         * find/testsuite/config/unix.exp:
1547         Run every test twice, once with the old (non-fts) binary and once with
1548         the new (fts-enabled) binary.
1550 2005-12-19 Eric Blake <ebb9@byu.net>
1552         * find/testsuite/Makefile.am,
1553         find/testsuite/find.posix/sv-bug-15235.xo, 
1554         find/testsuite/find.posix/sv-bug-15235.exp: New tests for Savannah
1555         bug 15235.
1556         
1557         * NEWS, find/find.1, doc/find.texi (Invoking find): Document bug
1558         fix for Savannah bug 15235.
1560 2005-12-16  James Youngman <jay@gnu.org>
1562         * xargs/xargs.1, xargs/xargs.c: Fixed bug# 15211, that xargs
1563         --show-limits is not documented in the manpage or in the usage
1564         message
1566 2005-12-12  James Youngman <jay@gnu.org>
1568         * find/testsuite/find.gnu/access.exp:
1569         Don't leave junk files lying around the place
1571         * README-CVS: Update the the instructions for getting gnulib; the
1572         CVS arrangements at Savannah have changed.
1574         * ChangeLog, NEWS, doc/find.texi, doc/perm.texi, find/defs.h, find/parser.c:
1575         Merged changes from 4.2.x branch again
1577         * NEWS, doc/find.texi, find/defs.h, find/find.c, find/ftsfind.c,
1578         find/parser.c, find/pred.c, find/util.c, lib/listfile.c,
1579         lib/listfile.h: Initial code to allow control over how -ls quote
1580         (or does not quote) control characters; not enabled yet
1582 2005-12-11  James Youngman <jay@gnu.org>
1584         * ChangeLog, THANKS, xargs/xargs.c:
1585         Fixed spelling errors in Bob Proulx's name.  Sorry, Bob.
1587 2005-12-10  James Youngman <jay@gnu.org>
1589         * doc/perm.texi:
1590         Aaron Hawley: Updated perm.texi from the coreutils distribution
1592         * find/parser.c:
1593         Avoid using entries which have the same name as POSIX library
1594         functions (fprintf, printf, exec) as the implementation is allowed to
1595         #define these.  That generates hard-to-grok compilation errors.
1597 2005-12-10  Andreas Metzler <gnu@downhill.at.eu.org>
1599         * ChangeLog, NEWS, configure.in, find/defs.h, find/parser.c:
1600         Applied patch from Andreas Metzler fixing Savannah bug #15181:
1601         implicit declaration of parse_openparen
1603 2005-12-08  James Youngman  <jay@gnu.org>
1605         * doc/find.texi: Typo and spelling corrections from Aaron Hawley
1607 2005-12-05  James Youngman  <jay@gnu.org>
1609         * Released findutils-4.2.27
1611 2005-12-05  James Youngman  <jay@gnu.org>
1613         * doc/find.texi, find/find.1, locate/locate.1, xargs/xargs.1:
1614         Savannah patch #3775 from Aaron Hawley: reconciling man pages
1615         differences; did not apply the patch, but resolved all the
1616         remaining issues manually by updating the documentation (mostly
1617         the Texinfo documentation, which was missing a number of specific
1618         technical statements about the behaviour of various options)
1620 2005-12-04  James Youngman  <jay@gnu.org>
1622         * doc/find.texi: Document --show-limits
1624         * xargs/xargs.c:
1625         Correctly display the size of the argument buffer we really allocated.
1627         * doc/find.texi, find/find.1, find/parser.c, find/pred.c, NEWS:
1628         Savannah bug #14748 (which this change does NOT fix): issue
1629         warning of future changes in the behaviour of -perm /000
1631 2005-11-30  James Youngman  <jay@gnu.org>
1633         * xargs/xargs.c:
1634         Typo correction from Benno Schulenberg <benno@nietvergeten.nl>
1635         (trivial change)
1637 2005-11-29  James Youngman  <jay@gnu.org>
1639         * xargs/xargs.c:
1640         Typo "Ilegal"; change to "Invalid" since this is not really illegal!
1641         Bug report by Primoz Peterlin.
1643         * lib/regexprops.c, xargs/xargs.c:
1644         Prefer the word 'Invalid' or the phrase 'not allowed' over
1645         'Illegal', as per the GNU coding standards, and as per the
1646         suggestion from Benno Schulenberg
1648 2005-11-24  James Youngman  <jay@gnu.org>
1650         * NEWS, lib/buildcmd.c, lib/buildcmd.h: Merge to trunk from 4.2.x fixes
1652         * lib/buildcmd.h:
1653         Deleted inaccurate comment about the default value of ctl->args_per_exec.
1655         * NEWS, lib/buildcmd.c, lib/buildcmd.h:
1656         Be more conservative about the total number of arguments we will
1657         allow (to avoid exec limits on Linux/PPC)
1659 2005-11-23  James Youngman  <jay@gnu.org>
1661         * NEWS: Bug #14921 has been fixed.
1663         * find/fstype.c:
1664         Savannah bug #14921: when a Linux bind filesystem is in use, find
1665         would expand '-printf %F' to 'none' if a bind mount targetted the same
1666         filesystem as the one containing the file to be described.
1668         * NEWS: Updated to describe recent changes
1670         * doc/find.texi, find/find.1: Documented find -printf %M
1672         * lib/buildcmd.c, xargs/testsuite/Makefile.am,
1673         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.exp,
1674         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.xo,
1675         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.exp,
1676         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.xo:
1677         Ensure that the test suite still passes even if the current
1678         system's value of ARG_MAX is different from the development/test
1679         system
1681         * lib/buildcmd.c: reindent and untabify
1683         * configure.in: The CVS code is moving on from the previous release.
1685 2005-11-22  James Youngman  <jay@gnu.org>
1687         * ChangeLog: Updated with recent changes.
1689 2005-11-21  James Youngman  <jay@gnu.org>
1691         * locate/testsuite/config/unix.exp:
1692         Even if we expect locate to return a nonzero status, the test should
1693         still fail if updatedb fails!
1695         * locate/testsuite/locate.gnu/ignore_case2.exp:
1696         Set the current directory for updatedb.  This test case is supposed to
1697         fail because the filename is not matched, not because updatedb fails!
1699         * locate/updatedb.sh:
1700         Check the binaries actually exist in the place we expect.
1702 2005-11-20  James Youngman  <jay@gnu.org>
1704         * locate/locate.1, xargs/xargs.1: Escape '-' as '\-' where appropriate.
1706         * find/find.1:
1707         Escape '-' as '\-' where appropriate.   Fixes last part of bug #14556.
1709 2005-11-19  James Youngman  <jay@gnu.org>
1711         * doc/find.texi, find/find.1:
1712         Applied edited form of Andreas Metzler's -perm /mode documentation
1713         patch resolving Savannah bug #14619.
1715         * lib/extendbuf.c:
1716         In the success case, extendbuf() should preserve the previous value of
1717         errno.  Fixes Savannah bug #14842.
1719         * xargs/testsuite/Makefile.am: Added new test files
1721         * find/find.1:
1722         Correctly indicate the default regular expression syntax (fixes
1723         Savannah bug #14836).
1725         * NEWS, configure.in: Released findutils-4.2.26
1727         * ChangeLog, NEWS, lib/buildcmd.c,
1728         xargs/testsuite/inputs/16383-ys.xi,
1729         xargs/testsuite/inputs/32767-ys.xi,
1730         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.exp,
1731         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.xo,
1732         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.exp,
1733         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.xo: Applied
1734         bugfix from Jim Meyering (tiny change), where many short arguments
1735         would cause xargs (and probably find -exec .. {} +) to fail
1736         because execve() returns E2BIG, which we should avoid
1738         * xargs/testsuite/inputs/16383-ys.xi,
1739         xargs/testsuite/inputs/32767-ys.xi,
1740         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.exp,
1741         xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.xo,
1742         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.exp,
1743         xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.xo: New file.
1745 2005-11-18  Jim Meyering  <jim@meyering.net> (tiny change)
1747         * lib/buildcmd.c (bc_push_arg): When exec'ing, don't exceed
1748         Linux's limit on the maximum number of command line arguments.
1750 2005-11-11  James Youngman  <jay@gnu.org>
1752         * NEWS, find/find.c, find/fstype.c: Savannah bug #14922: if we need the
1753         list of mounted filesystems but it is not available, exit fatally
1754         with a message.  If it is not available but we don't need it,
1755         there is no need for an error.
1757 2005-10-31  James Youngman  <jay@gnu.org>
1759         * doc/find.texi:
1760         Removed redundant additional description of "--regextype".
1762 2005-10-08  James Youngman  <jay@gnu.org>
1764         * find/find.c, lib/regextype.c: Fixed Savannah bug #14616, which
1765         was that c99 code had crept in and it didn't compile on c89
1766         compilers
1768         * doc/find.texi: Savannah patch #4371 from Andreas Metzler; the
1769         argument of -I is mandatory
1771 2005-09-21  James Youngman  <jay@gnu.org>
1773         * xargs/xargs.1, xargs/xargs.c: Clarified the -E option
1775 2005-09-20  James Youngman  <jay@gnu.org>
1777         * NEWS, configure.in, doc/find.texi, xargs/xargs.1, xargs/xargs.c:
1778         Documentation clarification: -L and -I take a mandatory argument;
1779         -l and -i do not
1781 2005-09-17  James Youngman  <jay@gnu.org>
1783         * xargs/xargs.c:
1784         Fixed Savannah bug #14550 - if environment is too large to allow
1785         exec() to work, we cannot even use "xargs --help".
1787         * find/find.1:
1788         Avoid the use of -perm +mode, using -perm /mode instead.  From comment
1789         by Andreas Metzler (though I didn't read the patch).
1791         * ChangeLog, doc/find.texi, find/find.1, xargs/xargs.1:
1792         Typo fix from A Costa (tiny change)
1794         * NEWS: Corrections for find manual page - symbolic permissions.
1796         * find/find.1:
1797         Corrected an inaccuracy in the EXAMPLES section - in symbolic modes,
1798         'o' stands for 'others' and 'u' stands for 'user' (i.e. the owner).
1800 2005-09-17  A Costa <agcosta@gis.net>  (tiny change)
1802         docs/find.texi: Fixed typo
1803         find/find.1: Fixed typo
1804         xargs/xargs.1: Fixed typo
1805         
1806 2005-09-17  James Youngman  <jay@gnu.org>
1808         * NEWS: Corrections for find manual page - symbolic permissions.
1810         * find/find.1:
1811         Corrected an inaccuracy in the EXAMPLES section - in symbolic modes,
1812         'o' stands for 'others' and 'u' stands for 'user' (i.e. the owner).
1814 2005-09-06  James Youngman  <jay@gnu.org>
1816         * xargs/xargs.c: Typo in "IEEE" in a comment.
1818 2005-09-04  James Youngman  <jay@gnu.org>
1820         * find/defs.h, find/find.c, find/parser.c, find/pred.c, 
1821         Work around compilation failure with GCC 4 and AIX 5.1, in which
1822         open is #defined to open64
1824 2005-09-03  James Youngman  <jay@gnu.org>
1826         * find/testsuite/find.gnu/quit.exp: Fixed Savannah bug#14390, by
1827         avoiding an accidental assumption in quit.exp that directory
1828         entries are returned by readir() in any particular order
1830         * NEWS, configure.in, doc/find.texi, xargs/testsuite/Makefile.am,
1831         xargs/testsuite/inputs/helloworld.xi,
1832         xargs/testsuite/xargs.gnu/delim-o.exp,
1833         xargs/testsuite/xargs.gnu/delim-o.xo, xargs/xargs.1,
1834         xargs/xargs.c: Added the --delimiter option to xargs, resolving
1835         Savannah support request sr #102914
1837         * ChangeLog, NEWS, configure.in: Released findutils-4.2.25
1840 2005-09-02  James Youngman  <jay@gnu.org>
1842         * doc/find.texi, find/find.1:
1843         Improved documentation in response to Savannah bug #14376
1845 2005-09-01  James Youngman  <jay@gnu.org>
1847         * po/ChangeLog, ChangeLog: Updated with recent changes.
1849         * locate/locate.c: Removed unused struct stringbuf.soffs.
1851         * doc/find.texi: Typo fix from Jim Meyering (trivial change)
1853 2005-09-01  Jim Meyering  <jim@meyering.net>
1855         * locate/locate.c (struct stringbuf) [soffs]: Remove unused member.
1856         (locate): Remove initialization, too.
1858 2005-09-01  James Youngman  <jay@gnu.org>
1860         * doc/find.texi: Typo fix from Jim Meyering (trivial change)
1862 2005-08-30  James Youngman  <jay@gnu.org>
1864         * find/defs.h, find/find.c, find/fstype.c, find/pred.c:
1865         Attempted fix for compilation when AFS is #defined
1867 2005-08-13  James Youngman  <jay@gnu.org>
1869         * find/find.1: Remind the user to quote the pattern argument to -iname.
1871 2005-08-12  James Youngman  <jay@gnu.org>
1873         * NEWS: Corrected typo.
1875 2005-08-09  James Youngman  <jay@gnu.org>
1877         * NEWS: Indicate that regexprops.texi is built on Cygin now that
1878         Savannah bug #14025 has been fixed.
1880         * lib/Makefile.am, lib/regexprops.c: Fixed compilation failure on
1881         Cygwin - Savannah Bug #14025 (tiny change, three lines), reported
1882         and fixed by Eric Blake
1884         * find/testsuite/Makefile.am,
1885         find/testsuite/find.posix/sv-bug-14070.exp,
1886         find/testsuite/find.posix/sv-bug-14070.xo: Added new test case for
1887         SourceForge bug #14070
1889         * find/testsuite/find.posix/sv-bug-14070.exp,
1890         find/testsuite/find.posix/sv-bug-14070.xo: New file.
1892         * find/defs.h, find/ftsfind.c, find/pred.c, find/util.c:
1893         Ensure we can still build with --enable-debug
1895         * find/testsuite/config/unix.exp,
1896         find/testsuite/find.gnu/execdir-one.exp,
1897         find/testsuite/find.gnu/execdir-root-only.exp,
1898         find/testsuite/find.gnu/sv-bug-12230.exp: If . is on $PATH,
1899         indicate that the -execdir tests cannot be carried out, as opposed
1900         to indicating that those tests fail
1902 2005-08-07  James Youngman  <jay@gnu.org>
1904         * NEWS: Indicated that some test suite files have been renamed.
1906         * xargs/testsuite/Makefile.am, xargs/testsuite/inputs/eof.xi,
1907         xargs/testsuite/inputs/eof1.xi,
1908         xargs/testsuite/xargs.sysv/eof.exp,
1909         xargs/testsuite/xargs.sysv/eof.xo,
1910         xargs/testsuite/xargs.sysv/eof1.exp,
1911         xargs/testsuite/xargs.sysv/eof1.xo,
1912         xargs/testsuite/xargs.posix/lc_l2.exp,
1913         xargs/testsuite/xargs.posix/lc_l2.xo,
1914         xargs/testsuite/xargs.sysv/l2.exp,
1915         xargs/testsuite/xargs.sysv/l2.xo,
1916         xargs/testsuite/xargs.sysv/lc_l2.exp,
1917         xargs/testsuite/xargs.sysv/lc_l2.xo,
1918         xargs/testsuite/xargs.posix/L2.exp,
1919         xargs/testsuite/xargs.posix/l2.exp,
1920         xargs/testsuite/xargs.posix/L2.xo,
1921         xargs/testsuite/xargs.posix/l2.xo,
1922         xargs/testsuite/xargs.posix/uc_L2.exp,
1923         xargs/testsuite/xargs.posix/uc_L2.xo: Work around problems with
1924         CVS clients on case-insentitive operating systems
1926         * debian/Changelog: Removed Changelog file since changelog is the
1927         one we should be using and having both files upsets Cygwin
1928         systems which cannot tell the dirrerence between changelog and
1929         Changelog
1931         * find/ftsfind.c:
1932         If DEBUG is defined, show the symbolic names fro fts_info values.
1934         * find/ftsfind.c: Added additional diagnostics.
1936 2005-08-01  James Youngman  <jay@gnu.org>
1938         * ABOUT-NLS, INSTALL, Makefile.am, configure.in, depcomp,
1939         doc/texinfo.tex, install-sh, missing, mkinstalldirs: By adding the
1940         missing AM_GNU_GETTEXT_VERSION call, allowed autopoint to update
1941         those files of which it has updated copies.
1943         * po/Makevars.template, po/Makefile.in.in, po/findutils.pot:
1944         Using AM_GNU_GETTEXT_VERSION, allowed gettext to update the infrastructure
1946         * po/Rules-quot, po/boldquot.sed, po/en@boldquot.header, po/en@quot.header, po/insert-header.sin, po/quot.sed:
1947         Files added by autopoint now that we are using AM_GNU_GETTEXT_VERSION
1949         * find/testsuite/Makefile.am: Added find.gnu./perm-slash.{exp,xo}.
1951 2005-07-31  James Youngman  <jay@gnu.org>
1953         * find/testsuite/excuses.txt: We now have tests for -perm.
1955         * NEWS, configure.in, find/parser.c,
1956         find/testsuite/find.gnu/perm-slash.exp,
1957         find/testsuite/find.gnu/perm-slash.xo: Fixed bug which caused find
1958         -perm /440 to be treated the same as find -perm 440
1960         * find/testsuite/Makefile.am:
1961         Generic tests for -perm -NNN and -perm NNN
1963         * find/testsuite/excuses.txt: New file - list of test cases that
1964         still need to be written, along with excuses why they haven't been
1965         done yet
1967         * find/testsuite/find.posix/perm-vanilla.exp,
1968         find/testsuite/find.posix/perm-vanilla.xo: Generic tests for -perm
1969         -NNN and -perm NNN
1971         * find/testsuite/find.gnu/inum.exp:
1972         Ensure that the test would fail if -inum just always returned true
1974         * find/testsuite/Makefile.am, find/testsuite/find.gnu/ilname.exp,
1975         find/testsuite/find.gnu/ilname.xo,
1976         find/testsuite/find.gnu/inum.exp, find/testsuite/find.gnu/inum.xo,
1977         find/testsuite/find.gnu/lname.exp,
1978         find/testsuite/find.gnu/lname.xo,
1979         find/testsuite/find.gnu/xtype.exp,
1980         find/testsuite/find.gnu/xtype.xo,
1981         find/testsuite/find.posix/links.exp,
1982         find/testsuite/find.posix/links.xo: New test cases for -ilname,
1983         -inum, -lname, -xtype
1985         * find/testsuite/Makefile.am, find/testsuite/find.gnu/delete.exp,
1986         find/testsuite/find.gnu/delete.xo,
1987         find/testsuite/find.gnu/iregex1.exp,
1988         find/testsuite/find.gnu/iregex1.xo,
1989         find/testsuite/find.gnu/regex1.exp,
1990         find/testsuite/find.gnu/regex1.xo,
1991         find/testsuite/find.gnu/regex2.exp,
1992         find/testsuite/find.gnu/regex2.xo,
1993         find/testsuite/find.gnu/samefile-copy.exp,
1994         find/testsuite/find.gnu/samefile-copy.xo,
1995         find/testsuite/find.gnu/samefile-link.exp,
1996         find/testsuite/find.gnu/samefile-link.xo,
1997         find/testsuite/find.gnu/samefile-same.exp,
1998         find/testsuite/find.gnu/samefile-same.xo,
1999         find/testsuite/find.gnu/samefile-symlink.exp,
2000         find/testsuite/find.gnu/samefile-symlink.xo: Further test cases
2002         * find/find.1: Indicate that -delete implies -depth (find.texi
2003         already mentioned this).
2005         * find/testsuite/Makefile.am:
2006         Brought the list of .exp and .xo files in Makefile.am into sync with
2007         the actual contents of the CVS repository.
2009         * find/testsuite/Makefile.am, find/testsuite/find.gnu/depth-d.exp,
2010         find/testsuite/find.gnu/depth-d.xo,
2011         find/testsuite/find.gnu/empty.exp,
2012         find/testsuite/find.gnu/empty.xo,
2013         find/testsuite/find.gnu/execdir-one.exp,
2014         find/testsuite/find.gnu/execdir-one.xo,
2015         find/testsuite/find.gnu/false.exp,
2016         find/testsuite/find.gnu/false.xo,
2017         find/testsuite/find.gnu/follow-basic.exp,
2018         find/testsuite/find.gnu/follow-basic.xo,
2019         find/testsuite/find.gnu/gnu-or.exp,
2020         find/testsuite/find.gnu/gnu-or.xo,
2021         find/testsuite/find.gnu/gnuand.exp,
2022         find/testsuite/find.gnu/gnuand.xo,
2023         find/testsuite/find.gnu/gnunot.exp,
2024         find/testsuite/find.gnu/gnunot.xo,
2025         find/testsuite/find.gnu/iname.exp,
2026         find/testsuite/find.gnu/iname.xo,
2027         find/testsuite/find.gnu/ipath.exp,
2028         find/testsuite/find.gnu/ipath.xo,
2029         find/testsuite/find.gnu/iwholename.exp,
2030         find/testsuite/find.gnu/iwholename.xo,
2031         find/testsuite/find.gnu/path.exp, find/testsuite/find.gnu/path.xo,
2032         find/testsuite/find.gnu/print0.exp,
2033         find/testsuite/find.gnu/print0.xo,
2034         find/testsuite/find.gnu/quit.exp, find/testsuite/find.gnu/quit.xo,
2035         find/testsuite/find.gnu/true.exp, find/testsuite/find.gnu/true.xo,
2036         find/testsuite/find.gnu/wholename.exp,
2037         find/testsuite/find.gnu/wholename.xo,
2038         find/testsuite/find.posix/and.exp,
2039         find/testsuite/find.posix/and.xo,
2040         find/testsuite/find.posix/exec-one.exp,
2041         find/testsuite/find.posix/exec-one.xo,
2042         find/testsuite/find.posix/grouping.exp,
2043         find/testsuite/find.posix/grouping.xo,
2044         find/testsuite/find.posix/name.exp,
2045         find/testsuite/find.posix/name.xo,
2046         find/testsuite/find.posix/posixnot.exp,
2047         find/testsuite/find.posix/posixnot.xo,
2048         find/testsuite/find.posix/prune.exp,
2049         find/testsuite/find.posix/prune.xo: Added new test cases for many
2050         of the actions and tests of find
2052         * find/find.c (default_prints):
2053         not a static function, so do not declare it as one.
2055         * m4/withfts.m4: Fixed underquoted definition of FIND_WITH_FTS.
2056         [this change is currently on a branch only]
2058 2005-07-30  James Youngman  <jay@gnu.org>
2060         * find/finddata.c, find/ftsfind.c, find/parser.c, find/pred.c,
2061         find/util.c, m4/Makefile.am, m4/withfts.m4: Initial attempt to
2062         convert find to use gnulib's fts()
2063         [this change is currently on a branch only]
2064         
2065         * find/finddata.c, find/ftsfind.c, m4/withfts.m4: New file.
2066         [this change is currently on a branch only]
2067         
2068         * NEWS, configure.in, find/Makefile.am, find/defs.h, find/find.c,
2069         import-gnulib.sh: Initial attempt to convert find to use gnulib's
2070         fts() [this change is currently on a branch only]
2072 2005-07-29  James Youngman  <jay@gnu.org>
2074         * NEWS, configure.in
2075         Prepared for the release of findutils-4.2.24
2077         * ChangeLog: Updated with recent changes.
2079         * NEWS, find/find.1, doc/find.texi:
2080         Indicate that -ok and -okdir redirect stdin from /dev/null.
2082         * NEWS: Explain the directory link count change more throroughly.
2084         * NEWS: Fixed bug #13973.
2086         * find/pred.c (pred_fprintf): Fix Savannah bug #13973: Modify the
2087         handling of -printf %Y so that it no longer modifies stat_buf
2089         * find/testsuite/find.gnu/printf-symlink.exp,
2090         find/testsuite/find.gnu/printf-symlink.xo: Detect Savannah bug
2091         #13973: pollution of stat_buf by the %Y directive (trivial change
2092         from Andreas Metzler)
2094         * INSTALL, depcomp, doc/texinfo.tex, install-sh, missing, mkinstalldirs:
2095         Updated auxilliary files from the automake-1.9 distribution
2097         * configure.in:
2098         Introduce new Automake conditional, CROSS_COMPILING, true when we are corss compiling
2100         * find/find.c:
2101         If we decline to follow a symbolic link due to the safety check, issue a more self-explanatory warning message
2103         * lib/Makefile.am: Don't build regexprops if we are cross compiling
2105         * doc/Makefile.am:
2106         Depend on the regex.h file rather than the 'regexprops' binary,
2107         because the header file will always exist even if we are doing "make
2108         dist".  Otherwise "make distcheck" fails because it tries to rebuild
2109         find.info while the source-directory is read-only.
2111 2005-07-28  James Youngman  <jay@gnu.org>
2113         * find/find.1:
2114         Say "other users" rather than "rest of the world" when talking about
2115         Unix permissions.  Fixes Savannah bug #4246.
2117 2005-07-27  James Youngman  <jay@gnu.org>
2119         * xargs/testsuite/Makefile.am: Added new test case 'childfail.exp'.
2121         * doc/find.texi:
2122         Updated the description of the safe-dir-change operation to reflect
2123         what find now does on systems that lack O_NOFOLLOW.
2125         * NEWS, find/parser.c: Indicate in the output of find --version if
2126         the leaf optimisation is enabled or not
2128         * find/find.c: Fixed typo.
2130         * find/find.c: If the link count of a directory starts off less
2131         than two, disable the leaf optimisation for this directory.
2133 2005-07-26  James Youngman  <jay@gnu.org>
2135         * lib/regexprops.c: Further small corrections from Karl.
2137         * doc/find.texi:
2138         Reordered the sections in the manual to put the "Common Tasks" and
2139         "Worked Examples" chapters together.
2141         * configure.in, find/find.c: Allow the leaf optimisation to be
2142         disabled by default with the configure option
2143         --disable-leaf-optimisation
2145         * find/find.c: Removed old code for antuqie version of savedir().
2147         * lib/regextype.c: Put the syntaxes in alphabetical order.
2149         * lib/regexprops.c: Karl made some more readability suggestions.
2151 2005-07-24  James Youngman  <jay@gnu.org>
2153         * doc/Makefile.am: If the regexprops program has changed we should
2154         re-run it, since it will probably now produce different output
2156         * lib/regextype.h:
2157         Allow the caller to detect if one regex type is identical to another.
2159         * configure.in:
2160         Define the preprocessor macro FINDUTILS for that code int he lib/
2161         directory can be slightly more reusable.
2163         * lib/regextype.c:
2164         Allow the caller to detect if one regex type is identical to another.
2166         * lib/regexprops.c:
2167         Made Texinfo style corrections suggested by Karl Berry.
2169 2005-07-22  James Youngman  <jay@gnu.org>
2171         * xargs/testsuite/xargs.posix/childfail.exp, xargs/xargs.c: Fix
2172         Savannah bug #13878, in which xargs deals incorrectly with child
2173         failure, returning 0 when it should return 123
2175 2005-07-17  James Youngman  <jay@gnu.org>
2177         * find/find.1: (tiny change) Corrections by Greg Wooledge
2179 2005-07-16  James Youngman  <jay@gnu.org>
2181         * doc/find.texi: Updates following comments by Dave Gilbert.
2183         * NEWS: Corrected a typo.
2185         * doc/find.texi:
2186         Added in the example about updating an aggregate timestamp file.
2188 2005-07-15  James Youngman  <jay@gnu.org>
2190         * po/da.po: Updated Danish translation from translation project
2192 2005-07-14  James Youngman  <jay@gnu.org>
2194         * NEWS, doc/Makefile.am, doc/find.texi, lib/Makefile.am,
2195         lib/regexprops.c, lib/regextype.c, lib/regextype.h: Added
2196         --regextype and -regextype options to locate and find
2197         respectively, and documented these
2199         * doc/find.texi: We use GNU Emacs regexps by default now.
2201         * doc/find.texi:
2202         We require GNU sort in order for locate to handle newlines correctly,
2203         not just GNU find.
2205 2005-07-10  James Youngman  <jay@gnu.org>
2207         * doc/find.texi:
2208         Applied several documentation improvement patches from Aaron Hawley
2210         * ChangeLog, NEWS: Updated with recent changes.
2212         * NEWS: Recent gnulib changed have fixed -iregex
2214         * doc/find.texi, xargs/xargs.1:
2215         Tiny patch from Andreas Metzler: xargs -I is like xargs -i, but the latter is deprecated
2217 2005-07-06  James Youngman  <jay@gnu.org>
2219         * find/defs.h, find/find.c, find/parser.c, find/pred.c:
2220         Fixed Savannah bug #13650; programs run by -exec cannot read stdin
2222 2005-07-04  James Youngman  <jay@gnu.org>
2224         * NEWS: *** empty log message ***
2226         * doc/find.texi:
2227         Added a "Worked Examples" section.   It currently only contains a
2228         (long) example about deleting files.
2230         * .cvsignore: Some extra stuff to ignore.
2232 2005-07-03  James Youngman  <jay@gnu.org>
2234         * find/Makefile.am: Don't need regexprops.c really...
2236         * lib/regextype.c, lib/regextype.h:
2237         New files for selecting regex type based on a keyword
2239         * locate/locate.1: Documented the fact that we now use Emacs-style
2240         regexps, not POSIX EREs, for compatibility with find -regex.
2242         * lib/Makefile.am, locate/locate.c, doc/find.texi,
2243         find/Makefile.am, find/defs.h, find/find.1, find/find.c,
2244         find/parser.c: Fixed Savannah bug #13495: find now uses
2245         Emacs-style regexps by default
2247 2005-07-02  James Youngman  <jay@gnu.org>
2249         * configure.in, find/defs.h, find/fstype.c, find/parser.c,
2250         intl/dcigettext.c, lib/buildcmd.c, lib/listfile.c,
2251         lib/savedirinfo.c, locate/locate.c, xargs/xargs.c: Assume unistd.h
2252         is present - avoid using HAVE_UNISTD_H
2254 2005-07-01  Jim Meyering  <jim@meyering.net>
2256         With `-fprint F' or `-fprintf F', don't write diagnostics
2257         to F when stderr is closed.
2259         * find/parser.c: Include "stdio-safer.h".
2260         (open_output_file): Use fopen_safer, not fopen.
2261         * import-gnulib.sh (findutils_modules): Add stdio-safer.
2263 2005-07-01  James Youngman  <jay@gnu.org>
2265         * doc/find.texi:
2266         Aaron pointed out a potentially-confusing sentence.  I fixed it.
2268         * find/defs.h, find/find.1, find/find.c, find/parser.c,
2269         find/pred.c, find/util.c: Allow consistency-checking of the
2270         predicates, checking for example that actions all have side
2271         effects
2273 2005-06-29  James Youngman  <jay@gnu.org>
2275         * doc/find.texi: Applied patch from Aaron Hawley (Savannah patch
2276         #3751: Typos and small suggestions to find.texi)
2278 2005-06-27  James Youngman  <jay@gnu.org>
2280         * ChangeLog, locate/locate.c: Applied patch from Bas Van Gompel to
2281         move match counting into a (new) visitor function
2283         * NEWS, configure.in: No longer 4.2.23, as we're moving on now
2285 2005-06-24  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
2287         * locate/locate.c (visit_count, visit_limit): New functions.
2288         (locate): Use visit_limit or visit_count. Simplify main loop.
2289         (main) Bail out early when limit is reached.
2291 2005-06-20  James Youngman  <jay@gnu.org>
2293         * xargs/xargs.c:
2294         Removed some code which had already been disabled via the preprocessor.
2296 2005-06-19  Dmitry V. Levin <ldv@altlinux.org>
2298         * lib/savedirinfo.c: Fix two compilation warnings (which would 
2299         prevent compilation if "-Wall -Werror" is in effect).
2300         
2301 2005-06-19  James Youngman  <jay@gnu.org>
2303         * ChangeLog: Indicate that we made (are making) a release.
2305         * ChangeLog, NEWS, configure.in: Preparing to release 4.2.23
2307         * doc/find.texi: Fixed Texinfo syntax error in previous change
2309         * doc/find.texi, xargs/xargs.1:
2310         Document the fact that the -i and -L options are currently
2311         incompatible (Savannah bug 13041).
2313         * locate/updatedb.1, locate/updatedb.sh: Fix Savannah bug 13411 -
2314         reject trailing slashes in updatedb's --prunepaths, bacsue these
2315         will never be matched
2317         * NEWS: Released findutils-4.2.23.
2319         * doc/find.texi, xargs/xargs.1:
2320         Document the fact that the -i and -L options are currently
2321         incompatible (Savannah bug 13041).
2323         * locate/updatedb.1, locate/updatedb.sh: Fix Savannah bug 13411 -
2324         reject trailing slashes in updatedb's --prunepaths, because these
2325         will never be matched.
2327 2005-06-18  Martin Buchholz (trivial patch applied by James Youngman)
2329         * find/defs.h, find/find.c, find/parser.c, doc/find.texi: Fix
2330         typos/spelling errors (mostly in source code comments).
2332 2005-06-18  Dmitry V. Levin  <ldv@altlinux.org>
2334         Additional documentation tweaks for -execdir/-okdir actions.
2335         * find/parser.c (parse_help): Mention -execdir and -ordir options.
2336         * doc/find.texi, find/find.1: Additionally document new options.
2337         
2338 2005-06-12  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
2340         * locate/locate.c: Implement --all (-A).
2341         
2342         * NEWS, doc/find.texi, locate/locate.1: Document locate --all (-A)
2343         
2344 2005-06-12  James Youngman  <jay@gnu.org>
2346         * find/find.c, NEWS:
2347         Savannah bug #13381 (Debian bug 313081): if we have O_NOFOLLOW,
2348         safely_chdir() does not need to call stat().  However, process_dir()
2349         used to rely on using that stat information.  To work around this
2350         problem, there is now an output parameter in safely_chdir() which
2351         indicates if the stat buffer is valid.
2352         This bug has possible security implications.
2354         * find/find.1, doc/find.texi:
2355         Applied patch from Andreas Metzler, improving the wording for the
2356         documentation of the %k and %b format directives.  This patch does
2357         not require a copyright assignment as it consists of several
2358         copies of the same small wording change.
2360 2005-06-11  James Youngman  <jay@gnu.org>
2362         * find/find.1: Corrected spelling error 'writeable' to 'writable'.
2364         * find/find.1, locate/locate.1:
2365         Fixed Savannah bug #13363, typos in manpages (trivial change)
2367 2005-06-10  James Youngman  <jay@gnu.org>
2369         * find/find.c, lib/savedirinfo.c, lib/savedirinfo.h: Switch to a
2370         new scheme for saving directory entry data which is extensible to
2371         allow additional data to be saved.
2373 2005-06-09  James Youngman  <jay@gnu.org>
2375         * locate/testsuite/config/unix.exp:
2376         Use the new normalize_dir procedure throughout.
2378         * locate/testsuite/config/unix.exp: Move the normalisation into a
2379         procedure.  Don't rely on the "file normalize" command being
2380         available (it's new in Tcl 8.4).
2382 2005-06-08  James Youngman  <jay@gnu.org>
2384         * ChangeLog, NEWS, configure.in: Updated for recent changes
2386         * doc/find.texi:
2387         Explain that you should put the argument of -name in quotes.
2389         * find/find.1:
2390         Added a new "NON-BUGS" section pointing out things that look like bugs
2391         but are caused by mistakes or misunderstandings.
2393         * doc/find.texi, locate/locate.1: Applied Bas van Gompel's patch
2394         which allows the database to be read from stdin.
2396         * locate/locate.c:
2397         Read the database in by using the "visitor" pattern.  Modified file
2398         header comment to indicate that we no longer use the efficient
2399         algorith described in ;login:.  Emit an error message if the
2400         LOCATE_PATH variable implies that we should read stdin twice.
2401         Most of this code is from Bas van Gompel.
2403         * AUTHORS: Credit Bas van Gompel for his work on locate.
2405         * lib/printquoted.h: Appled patch from Bas - fixing compiler warning.
2407 2005-06-07  James Youngman  <jay@gnu.org>
2409         * ChangeLog, NEWS, configure.in: Updates prior to release
2411         * config.rpath: Added file required for 'make dist'
2413         * po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po,
2414         po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po,
2415         po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po,
2416         po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po,
2417         po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/rw.po, po/sk.po,
2418         po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po, po/zh_CN.po:
2419         updated the po files for release
2421         * xargs/testsuite/Makefile.am:
2422         Added in all the test files from Dmitry V. Levin.
2424 2005-06-08  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
2426         * NEWS, locate/locate.1, doc/find.texi: Document usage of `-'
2427         to refer to stdin in database-path for locate.
2428         * locate/locate.c: Change prototype for visitors and processors
2429         throughout. Move reading the database and generating base_name
2430         into visitors. Allow `-' to refer to stdin in database-path.
2432         * lib/printquoted.h: Include stdio.h.
2434 2005-06-07  James Youngman  <jay@gnu.org>
2436         * COPYING, debian/copyright, depcomp, doc/texinfo.tex,
2437         find/defs.h, find/find.c, find/fstype.c, find/parser.c,
2438         find/pred.c, find/testsuite/config/unix.exp, find/tree.c,
2439         find/util.c, import-gnulib.sh, intl/Makefile.in,
2440         intl/bindtextdom.c, intl/config.charset, intl/dcgettext.c,
2441         intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c,
2442         intl/dngettext.c, intl/explodename.c, intl/finddomain.c,
2443         intl/gettext.c, intl/gettext.h, intl/gettextP.h,
2444         intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c,
2445         intl/libgettext.h, intl/libgnuintl.h, intl/loadinfo.h,
2446         intl/loadmsgcat.c, intl/localcharset.c, intl/locale.alias,
2447         intl/localealias.c, intl/ngettext.c, intl/plural.c, intl/plural.y,
2448         intl/ref-add.sin, intl/ref-del.sin, intl/textdomain.c,
2449         lib/buildcmd.c, lib/buildcmd.h, lib/extendbuf.c, lib/extendbuf.h,
2450         lib/forcefindlib.c, lib/listfile.c, lib/listfile.h,
2451         lib/modetype.h, lib/nextelem.c, lib/nextelem.h, lib/printquoted.c,
2452         lib/printquoted.h, lib/qmark.c, lib/savedirinfo.c,
2453         lib/savedirinfo.h, lib/strspn.c, lib/wait.h, lib/waitpid.c,
2454         locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c,
2455         locate/locatedb.h, locate/testsuite/config/unix.exp,
2456         locate/updatedb.sh, missing, po/fetch-po-files,
2457         xargs/testsuite/config/unix.exp, xargs/xargs.c: 
2458         Updated the FSF's postal address
2460         * ChangeLog: Corrected Bas's email address.
2462         * locate/locate.c: Updated copyright years.
2464 2005-06-07  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
2466          * locate/locate.c: Fold case once, only when needed.
2467   
2468 2005-06-07  James Youngman  <jay@gnu.org>
2470         * NEWS: Updated with recent changes.
2472         * mdate-sh: Use the mdate-sh from automake
2474         * find/parser.c, find/pred.c, find/tree.c, find/util.c,
2475         lib/Makefile.am, lib/forcefindlib.c, lib/listfile.c,
2476         lib/listfile.h, locate/code.c, locate/locate.c, find/defs.h,
2477         find/find.c: Fix Savannah bug #13324: Fix compiler warnings for
2478         GCC-3.4
2480         * locate/locate.c:
2481         Fixed Savannah bug #13325: Quoting of output filenames in locate
2482         should match find.
2484         * find/parser.c:
2485         Fixed Savannah bug #13319: C9X-ism in parser.c (declaration after
2486         statements).
2488         * find/pred.c, lib/Makefile.am, lib/listfile.c, lib/nextelem.c,
2489         lib/printquoted.c, lib/printquoted.h, lib/qmark.c, NEWS,
2490         doc/find.texi, find/defs.h, find/find.1, find/parser.c: Fixed
2491         Savannah bug #13303, find should filter out non-printable
2492         characters if outputting to tty
2494 2005-05-30  James Youngman  <jay@gnu.org>
2496         * locate/locate.c: rename new_locate() to locate() since
2497           old_locate() has gone the way of the dodo.
2499 2005-05-29  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
2501         Add a ``--print'' (``-p'') option. (to cancel side-effects of -c/-S)
2502         Allow ``--statistics'' in combination with non-options.
2503         * doc/find.texi: Add documentation for locate --print (-p), and the
2504         use of non-options with --statistics.
2505         * locate/locate.1: ditto.
2506         * locate/locate.c: Read each database only once.
2508 2005-05-23  Paul Eggert  <eggert@cs.ucla.edu>
2510         Adjust to recent gnulib changes.
2511         * import-gnulib.sh: Get config.rpath from gnulib/build-aux,
2512         not gnulib/config.
2513         * find/parser.c (parse_perm): Ignore umask when parsing
2514         symbolic permissions.  Adjust to new modechange API.
2516 2005-05-16  James Youngman  <jay@gnu.org>
2518         * find/find.c, find/parser.c, find/pred.c, find/tree.c:
2519         Trivial change: don't use i18n support for debug-only messages
2521         * ChangeLog: Added ChangeLog entry crediting Dmitry
2523 2005-05-09  James Youngman  <jay@gnu.org>
2525         * find/parser.c:
2526         The previous change fixed Savannah bug #12999.  This change doesn't do
2527         anything, it's only intended to be a place to record the Savannah bug
2528         ID we've just fixed.
2530         * find/parser.c:
2531         Oops.  Initialise the variable which indicates which regex syntax to
2532         use.  We use POSIX basic regular expressions.
2534         * find/parser.c:
2535         Suggestion by Ed Avis: point out that "-name foo/bar" will almost
2536         always evaluate to false.   Suggest to the user what alternatives they
2537         might find useful.
2539 2005-05-02  James Youngman  <jay@gnu.org>
2541         * AUTHORS:
2542         Added Dimitry (his new test suite contribution required a copyright
2543         assignment).
2545 2005-05-03  Dmitry V. Levin
2547         * Added xargs test suite tests by Dmitry V. Levin, together with
2548           bugfixes which ensure that the tests pass.
2550 2005-04-18  James Youngman  <jay@gnu.org>
2552         * Added test suite tests for Bas van Gompel's changes.
2554 2005-04-18  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
2556         * doc/find.texi: Document locate --non-existing (-E).
2557         * locate/locate.1: Ditto.
2558         * locate/locate.c: Implement --non-existing (-E).
2559    
2560 2005-04-04  James Youngman  <jay@gnu.org>
2562         * configure.in, import-gnulib.sh:
2563         We no longer need gnulib/m4/Makefile.am
2565         * po/vi.po: Updated Vietnamese translation
2567         * locate/updatedb.sh:
2568         Savannah bug #12491: Only use the "-s" option to "su" if it is
2569         supported.
2571 2005-04-01  James Youngman  <jay@gnu.org>
2573         * locate/locate.1, locate/updatedb.1, xargs/xargs.1: Trivial
2574         change from A Costa <agcosta@gis.net>, fixing typos in manual
2575         pages for xargs, locate and updatedb; fixes Savannah bug #12500,
2576         Debian bug #301934
2578 2005-03-22  James Youngman  <jay@gnu.org>
2580         * import-gnulib.sh: Include the new gnulib module stat-macros
2582         * configure.in:
2583         CVS code is (will shortly be) no longer identical to the 4.2.20 release
2585 2005-03-17  James Youngman  <jay@gnu.org>
2587         * configure.in: Preprare for release of 4.2.20.
2589         * NEWS: Updated prior to release of 4.2.20.
2591         * ChangeLog: Updated with recent changes.
2593         * THANKS: Thank Bas van Gompel, but only once.
2595         * THANKS: Thank Bas van Gompel and Aaron S. Hawley.
2597         * po/vi.po: Updated Vietnamese PO file
2599 2005-03-10  James Youngman  <jay@gnu.org>
2601         * po/nl.po: Updated Dutch PO file
2603 2005-03-08  Bas van Gompel  <patch-findutils.buzz@bavag.tmfweb.nl>
2605         * import-gnulib.sh: Re-enable creation of gnulib/m4/Makefile.am.
2607 2005-03-07  James Youngman  <jay@gnu.org>
2609         * Released findutils-4.2.19.
2611         * find/testsuite/find.posix/sizes.exp:
2612         Use 2>/dev/null instead of 2>&1, because Tcl understands the former
2613         but not the latter.
2615         * find/testsuite/Makefile.am: Also distribute sv-bug-12181.xo.
2617         * find/testsuite/Makefile.am: Distribute sv-bug-12181.
2619         * find/testsuite/Makefile.am: Distribute sv-bug-12230.
2621         * NEWS: Updated with new news.
2623         * ChangeLog: Brought up to date.
2625         * lib/buildcmd.c, find/testsuite/find.gnu/sv-bug-12230.exp: Fixed
2626         Savannah bug #12230, in which '-exec echo == {} +' is always run,
2627         even if there were no matched files.
2629 2005-03-06  James Youngman  <jay@gnu.org>
2631         * ChangeLog: Added latest changes.
2633         * po/pt.po, configure.in: Added Portuguese translation
2635 2005-03-04  James Youngman  <jay@gnu.org>
2637         * configure.in: Modernized the way we call AC_INIT and
2638         AM_INIT_AUTOMAKE
2640         * locate/locate.c, find/pred.c, find/find.c:
2641         Eliminated some compiler warnings
2643         * find/pred.c: Clarified the meaning of a comment.
2645         * find/testsuite/Makefile.am: Added sizes.exp, sizes.xo.
2647         * find/testsuite/find.posix/sizes.xo,
2648         find/testsuite/find.posix/sizes.exp: Added tests for -size
2649         predicate
2651 2005-03-03  James Youngman  <jay@gnu.org>
2653         * find/find.c:
2654         safely_chdir_lstat(): if we didn't end up in the right place, and then
2655         fchdir() fails, we can't return to the directory we started in.
2656         Therefore, issue a fatal error message and exit.
2658 2005-03-01  James Youngman  <jay@gnu.org>
2660         * find/find.c, find/testsuite/find.posix/sv-bug-12181.exp,
2661         find/testsuite/find.posix/sv-bug-12181.xo: Fixed SourceForge bug
2662         12181 (find -H symlink-to-dir reports 'Too many Symbolic links')
2663         and bug 12044 (find still hangs on dead NFS filesystems on
2664         Solaris)
2666 2005-02-28  James Youngman  <jay@gnu.org>
2668         * doc/find.texi: Typo: O_NOFOLLOW, not O_FOLLOW
2670         * import-gnulib.sh:
2671         Suggestion from Martin Buchholz; unset CDPATH to prevent "cd" echoing
2672         the new directory.
2674 2005-02-27  James Youngman  <jay@gnu.org>
2676         * README: Indicate how the reader can verify the release.
2678 2005-02-26  James Youngman  <jay@gnu.org>
2680         * po/sk.po, po/sl.po, po/sr.po, po/sv.po, po/tr.po, po/vi.po,
2681         po/zh_CN.po, po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po,
2682         po/eo.po, po/es.po, po/et.po, po/fi.po, po/findutils.pot,
2683         po/fr.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po,
2684         po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po,
2685         po/pt_BR.po, po/ro.po, po/ru.po: Added new Vietnamese translation
2687         * configure.in: Added new Vietnamese translation.
2689 2005-02-25  James Youngman  <jay@gnu.org>
2691         * po/ga.po: Updated Irish po file
2693 2005-02-23  James Youngman  <jay@gnu.org>
2695         * Makefile.am: Fix Savannah bug #12064 - 'make distclean' deletes
2696         regex.c but should not.
2698         * find/testsuite/Makefile.am,
2699         find/testsuite/find.gnu/printf-h.exp,
2700         find/testsuite/find.gnu/printf-h.xo: Added test case for Savannah
2701         bug #12085 (-printf %h).
2703         * NEWS, doc/find.texi, find/find.1, find/pred.c:
2704         %h now expands to '.' instead of nothing.
2706 2005-02-22  James Youngman  <jay@gnu.org>
2708         * find/find.c:
2709         Fixed Savannah bug #12099 (misinterpretation of system versions
2710         leading to possible incorrect disabling of O_NOFOLLOW).  Reported by
2711         Dmitry V. Levin.
2713         * find/pred.c:
2714         For the %h format, don't bail out early as the format might contain
2715         something else too.
2717 2005-02-21  James Youngman  <jay@gnu.org>
2719         * find/find.c: Fixed accidental C99 dependency.
2721 2005-02-20  James Youngman  <jay@gnu.org>
2723         * po/be.po, po/ca.po, po/da.po, po/de.po, po/el.po, po/eo.po,
2724         po/es.po, po/et.po, po/fi.po, po/findutils.pot, po/fr.po,
2725         po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/it.po,
2726         po/ja.po, po/ko.po, po/lg.po, po/ms.po, po/nl.po, po/pl.po,
2727         po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sr.po,
2728         po/sv.po, po/tr.po, po/zh_CN.po: Updated italian translation
2730         * doc/find.texi: Corrected a typo.
2732         * find/find.c:
2733         Read the mounted device list afer parsing the command line, so that
2734         for example "find --version" still works (in response to Savannah bug
2735         #12044).
2737         * configure.in: We've moved on from findutils-4.2.18.
2739 2005-02-19  James Youngman  <jay@gnu.org>
2741         * NEWS: Corrected the summary of the "find -depth" bug.
2743 2005-02-16  James Youngman  <jay@gnu.org>
2745         * NEWS, configure.in: Prepared for release of 4.2.18.
2747         * ChangeLog: Updated prior to release of 4.2.18.
2749         * find/testsuite/Makefile.am:
2750         Distribute the test cases for the recent "find -depth" bug.
2752         * find/testsuite/find.posix/depth1.exp, find/testsuite/find.posix/depth1.xo:
2753         Added test case for find -depth bug reported by Joseph S. Myers
2755         * find/find.c:
2756         If -depth is in effect, processing of the subdirectories invalidates
2757         the information in 'state'.  Therefore once we get around to
2758         processing the predicates, restore the information that we keep in
2759         'state' and in 'stat_buf'.
2761 2005-02-15  James Youngman  <jay@gnu.org>
2763         * ChangeLog: Updated with recent changes
2765         * find/find.1:
2766         Emphasise that -L causes find to recurse into subdirectories pointed
2767         to by symbolic links.
2769         * find/find.1:
2770         Patch to find.1 from Aaron Hawley <Aaron.Hawley@uvm.edu>:
2772         * Notes about -H actually apply to -L.
2773         * Said paragraph is duplicated two paragraphs later.
2774         * Typos: nno, ibmue, surrpounding
2776 2005-02-15  Aaron Hawley  <Aaron.Hawley@uvm.edu>
2778         * find/find.1: Notes about -H actually apply to -L.  Said
2779         paragraph is duplicated two paragraphs later.  Also typos: nno,
2780         ibmue, surrpounding
2782 2005-02-13  James Youngman  <jay@gnu.org>
2784         * find/find.1: Miscellaneous small clarifications and improvements.
2786         * doc/find.texi: Added Info nodes and menus under "Changing the
2787         Current Working Directory" so that it doesn't generate such a huge
2788         Info page.
2790         * find/find.c: Parenthesise #if defined(...).
2792 2005-02-13  Dmitry V. Levin  <ldv@altlinux.org>
2793         
2794         * find/find.c: remove test code snippet (time(NULL) was used to
2795         place a marker for spotting with strace(), but was not actually
2796         needed).
2798         * find/find.c (safely_chdir_nofollow): must not fall back on
2799         safely_chdir_lstat() because that will expose it to race condition
2800         exploits, making it pointless.
2802         * find/find.c (safely_chdir_lstat): Move
2803         complete_pending_execdirs() up into safely_chdir(), because we
2804         need to do that in either case.
2806 2005-02-12  James Youngman  <jay@gnu.org>
2808         * configure.in, doc/find.texi, find/defs.h, find/find.c,
2809         find/parser.c: Fix for Savannah bug #11879, that
2810         init_mounted_dev_list() causes find to hang on systems which are
2811         clients to dead NFS servers
2813 2005-02-10  James Youngman  <jay@gnu.org>
2815         * doc/find.texi: Talk about the problem where find will not work
2816         if you have a filesystem mounted from an unresponsive NFS server.
2818 2005-02-09  James Youngman  <jay@gnu.org>
2820         * find/find.1: Indicate that $TZ affects from printf-format
2821         results, and add extra cross-references in the SEE ALSO section.
2823 2005-02-08  James Youngman  <jay@gnu.org>
2825         * xargs/testsuite/Makefile.am: Distribute the .xe files also.
2827         * Makefile.am: Check that we have the right number of .xe files in
2828         the distribution also.
2830         * ChangeLog, NEWS, configure.in
2831         Preparing to release findutils-4.2.17
2833 2005-02-07  James Youngman  <jay@gnu.org>
2835         * find/testsuite/config/unix.exp: Re-sort the .xo file using the
2836         calling user's locale, because our 'pre-sorted' .so output file
2837         may not be sorted with the same collating order as 'sort' used to
2838         order the output of "find.  Bug spotted by Vin Shelton and Dimitry
2839         V. Levin.
2841         * find/testsuite/Makefile.am:
2842         New test, find/testsuite/find.gnu/follow-arg-parent-symlink.exp.
2844         * find/testsuite/find.gnu/follow-arg-parent-symlink.exp,
2845         find/testsuite/find.gnu/follow-arg-parent-symlink.xo, find/find.c:
2846         Fix for starting point /foo/bar/baz where bar is a symlink but baz
2847         is not - we should chdir into bar there even if it is a symbolic
2848         link
2850 2005-02-07  James Youngman  <jay@gnu.org>
2852         * find/testsuite/Makefile.am:
2853         New test, find/testsuite/find.gnu/follow-arg-parent-symlink.exp.
2855         * find/testsuite/find.gnu/follow-arg-parent-symlink.exp,
2856         find/testsuite/find.gnu/follow-arg-parent-symlink.xo, find/find.c:
2857         Fix for starting point /foo/bar/baz where bar is a symlink but baz
2858         is not - we should chdir into bar there even if it is a symbolic
2859         link
2861 2005-02-06  James Youngman  <jay@gnu.org>
2863         * doc/find.texi:
2864         -size: Clarification - -size gives a result consistent with 'wc -c'
2865          for example.
2867         * Makefile.am, find/testsuite/Makefile.am,
2868         find/testsuite/find.gnu/execdir-root-only.exp,
2869         find/testsuite/find.gnu/execdir-root-only.xo,
2870         locate/testsuite/Makefile.am, xargs/testsuite/Makefile.am:
2871         dist-hook: Ensure that we distribute all the .po files and all the
2872         testsuite files
2874         * po/pl.po: Updated Polish translation from TP website
2876 2005-02-05  Dmitry V. Levin  <ldv@altlinux.org>
2878         * find/parser.c, find/pred.c: Additional tweaks for
2879         -execdir/-okdir actions.
2880         
2881         * find/parser.c (new_insert_exec_ok): Disable ignore_readdir_race
2882         for -execdir/-okdir.
2883         
2884         * find/pred.c (pred_execdir, pred_okdir): Use state.rel_pathname
2885         instead of basename(pathname).  Do not add "./" prefix for
2886         absolute pathnames.
2887         
2888         * find/find.c (process_top_path): Treat "/" similarly to ".".
2890         * xargs/testsuite/xargs.posix/savannah-11865.exp,
2891         xargs/testsuite/xargs.posix/savannah-11865.xo, xargs/xargs.c:
2892         Fixed Savannah bug #11866 (not resetting number of used chars in
2893         the command buffer) - reported by Dimitry V. Levin
2895 2005-02-05  James Youngman  <jay@gnu.org>
2897         * THANKS:
2898         Added thanks for Dimitry - has produced many patches, bugfixes and
2899         suggestions.
2901         * find/pred.c:
2902         Fixed Savannah bug #11866: typo in pred_okdir() renders it useless
2904         * find/pred.c:
2905         Savannah bug #11861: undefined symbol 'basename' on IRIX 5.3
2907         * NEWS, configure.in, po/be.po, po/ca.po, po/el.po, po/eo.po,
2908         po/fi.po, po/ga.po, po/hr.po, po/hu.po, po/ja.po, po/lg.po,
2909         po/ms.po, po/ro.po, po/sl.po, po/sr.po, po/zh_CN.po: Added new
2910         translations
2912         * ChangeLog: Updated from CVS prior to release of 4.2.16.
2914         * po/ChangeLog: Updated from CVS.
2916         * NEWS, configure.in: Preparing to release 4.2.16
2918         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot,
2919         po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po,
2920         po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sl.po, po/sv.po,
2921         po/tr.po: make update-po prior to 'make distcheck'
2923         * po/fetch-po-files: This is the first version we actually used.
2925         * find/find.c: process_top_path() fixed compilation warning.
2927         * find/find.c: process_top_path(): avoid processing this item if
2928         we can't chdir to the basename of the named file.
2930         * lib/Makefile.am: Always build forcefindlib.c
2932         * locate/locate.c: Say 'base name' rather than 'basename' in comments
2934         * find/pred.c, find/find.c: process_top_path(): Proper bugfix for
2935         correct handling of items at depth 0 (i.e. specified on the
2936         command line) - do an extra chdir to ensure that we're in the
2937         directory containing the item before calling process_path().
2938         Hnece also undo the previous 'quick fix' for the same problem
2940         * doc/find.texi:
2941         -execdir no longer has to treat anything as special, even at depth 0.
2943 2005-02-03  James Youngman  <jay@gnu.org>
2945         * doc/find.texi, find/pred.c: When state.curdepth is 0, our
2946         working directory is not the directory containing the file we are
2947         processing.
2949 2005-02-02  James Youngman  <jay@gnu.org>
2951         * find/pred.c:
2952         To allow compilation on cygwin, use base_name(), not basename().
2955 2005-02-01  James Youngman  <jay@gnu.org>
2957         * ChangeLog: Updated from CVS log.
2959 2005-01-31  James Youngman  <jay@gnu.org>
2961         * find/find.c, lib/nextelem.c, lib/nextelem.h, locate/code.c,
2962         locate/frcode.c, locate/testsuite/config/unix.exp,
2963         xargs/testsuite/config/unix.exp, xargs/xargs.c: Updated/corrected
2964         the email address for David MacKenzie, one of the original authors
2965         of findutils
2967         * doc/Makefile.am: The HTML version of the manual generated for
2968         the GNU project website has each node in a separate file, not each
2969         chapter in a separate file; adjust filenames accordingly
2971         * find/parser.c, find/pred.c, lib/savedirinfo.c:
2972         Removed some unused variables (patch from Dmitry V. Levin)
2974         * find/find.c:
2975         Patch from Dmitry V. Levin <ldv@altlinux.org>: Add subfs to the list
2976         of filesystems which are likely to be automounted.
2978         * m4/findlib.m4: Corrected typo (pointed out by Dmitry V. Levin).
2980         * find/testsuite/config/unix.exp,
2981         find/testsuite/find.gnu/name-period.xo,
2982         find/testsuite/find.gnu/posix-dflt.xo,
2983         find/testsuite/find.gnu/posix-h.xo,
2984         find/testsuite/find.gnu/posix-l.xo,
2985         find/testsuite/find.gnu/printf.exp,
2986         find/testsuite/find.gnu/printf.xo: Systems differ in the order in
2987         which filenames are returned by readdir.  Hence sort the output of
2988         'find' before comparing against the expected-output file.  We
2989         therefore also have the lines in the .xo files ready-sorted.
2991 2005-01-30  James Youngman  <jay@gnu.org>
2993         * doc/Makefile.am:
2994         Added rules for extra targets that we buld to update the web site.
2996 2005-01-29  James Youngman  <jay@gnu.org>
2998         * configure.in: No longer version 4.2.15 - we've changed the manual.
3000         * doc/find.texi:
3001         Clarified the txt about adding extra tests with post-processing via
3002         xargs, and recommend -execdir instead for security reasons.
3004         * doc/find.texi: Patch from Karl Berry:
3005         - more entries for the dir file
3006         - use @copying so the copyright ends up in the HTML etc. output.
3007           (This is the only really important change.)
3008         - put @contents after the title page, for conventional toc location.
3009         - use @ifnottex to wrap the Top node instead of @ifinfo, for the sake of
3010           HTML output, etc.
3012         * NEWS, configure.in, po/da.po, po/de.po, po/es.po, po/et.po,
3013         po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po,
3014         po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po,
3015         po/sv.po, po/tr.po: Prepared to release findutils-4.2.15
3017         * ChangeLog: Updated from CVS log.
3019 2005-01-28  James Youngman  <jay@gnu.org>
3021         * configure.in:
3022         Make --enable-d_type-optimization and --enable-d_type-optimisation
3023         both work.
3025         * configure.in: Assume --enable-d_type-optimisation by default
3027         * find/parser.c: Indicate which features are enabled/disabled
3029         * locate/testsuite/config/unix.exp:
3030         Clean up the files left behind by the locate_textonly test
3032 2005-01-27  James Youngman  <jay@gnu.org>
3034         * doc/find.texi: Documented --regex.
3036         * NEWS, locate/locate.1, locate/locate.c, locate/testsuite/Makefile.am, locate/testsuite/config/unix.exp, locate/testsuite/locate.gnu/regex1.exp:
3037         Implemented locate --regex - but needs documenting in Texinfo manual.
3039 2005-01-25  James Youngman  <jay@gnu.org>
3041         * configure.in: Bumped version no.
3043         * doc/find.texi:
3044         Document --mmap and --stdio as being synonyms of -m and -s.
3046         * locate/locate.1:
3047         Document --mmap and --stdio as synonyms of -m and -s.
3049         * locate/locate.c:
3050         Document -m and -s (both no-ops) in the usage message.
3052         * doc/find.texi, locate/locate.1: Document -m and -s as no-ops.
3054         * ChangeLog: Updated for release of findutils-4.2.14.
3056         * NEWS, configure.in, po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
3057         Preparing to release findutils-4.2.14
3059 2005-01-25  James Youngman  <jay@gnu.org>
3061         * NEWS, configure.in, po/da.po, po/de.po, po/es.po, po/et.po,
3062         po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po,
3063         po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po,
3064         po/sv.po, po/tr.po: Preparing to release findutils-4.2.14
3066 2005-01-24  James Youngman  <jay@gnu.org>
3068         * Makefile.am: Work around the fact that automake-1.7 actually
3069         works, and correctly distributes regex.c; hence dist-hook should
3070         only copy gnulib/lib/regex.c if this has not already been done.
3072         * find/defs.h, find/find.c, find/pred.c,
3073         find/testsuite/Makefile.am,
3074         find/testsuite/find.gnu/printf-symlink.exp,
3075         find/testsuite/find.gnu/printf-symlink.xo,
3076         find/testsuite/find.gnu/xtype-symlink.exp,
3077         find/testsuite/find.gnu/xtype-symlink.xo: Fixes for -xtype and
3078         -printf %Y, which had been the wrong way around.
3080         * NEWS: Avoid including the find.gnu subdirectory in the
3081         distributed file more than once
3083         * locate/locate.c:
3084         Move the printing of the statistics into a new function, print_stats()
3086         * find/testsuite/Makefile.am: Avoid including the find.gnu
3087         subdirectory in the distributed file more than once
3089         * import-gnulib.sh:
3090         We need the regex module anyway, to allow compilation on Solaris
3092 2005-01-23  James Youngman  <jay@gnu.org>
3094         * configure.in:
3095         Invoke gl_INCLUDED_REGEX directly to ensure successful compilation on
3096         systems like Solaris, which lacks those functions in libc (fixes GNU
3097         Savannah bug #11710).
3099         * locate/locate.1: -S is a synonym for --statistics
3101         * doc/find.texi: Documented the new -H, -L and -P options.
3103         * locate/locate.1, locate/locate.c: Implement options -L
3104         (default), -H and -P, which mean the same things as for find,
3105         except for the fact that the default is -L rather than -P
3107         * find/find.1: Corrected definition of the exit status for -quit.
3109         * find/find.c, find/pred.c: If DEBUG_STAT is set, issue a debug
3110         message when we call chdir() so that we can figure out what is
3111         actually being stat()ed
3113         * locate/updatedb.sh:
3114         Removed spurious newline from help message (bug report from Karl
3115         Berry).
3117         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot,
3118         po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po,
3119         po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po,
3120         Makefile.am, NEWS, configure.in, find/defs.h, find/find.c,
3121         find/parser.c, find/pred.c, find/tree.c, find/util.c,
3122         import-gnulib.sh, lib/savedirinfo.c: Merged the d_type
3123         optimisation code; this is disabled by default, and can be enabled
3124         with 'configure --enable-d_type-optimisation'
3126         * NEWS:
3127         Updated optimisation NEWS item to indicate the effect on runtime.
3129 2005-01-22  James Youngman  <jay@gnu.org>
3131         * NEWS, configure.in: Prepare for release of findutils-4.2.12
3133         * ChangeLog: Brought up to date with recent changes.
3135         * Makefile.am, import-gnulib.sh, po/Makefile.in.in, po/Makevars,
3136         po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot,
3137         po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po,
3138         po/pl.po, po/pt_BR.po, po/remove-potcdate.sin, po/ru.po, po/sk.po,
3139         po/sv.po, po/tr.po: Switch to using the gnulib gettext module, to
3140         ensure that 'make distcheck' works with current xgettext,
3141         autoconf, etc.
3143         * find/testsuite/config/unix.exp:
3144         Oops, we do need to clean up after all.
3146 2005-01-21  James Youngman  <jay@gnu.org>
3148         * xargs/testsuite/Makefile.am: Added name of missing input file.
3150         * find/testsuite/Makefile.am:
3151         Distribute a few files that we had forgotten about
3153         * xargs/testsuite/Makefile.am: Added some missing files.
3155         * lib/Makefile.am: Also need buildcmd.h.
3157         * xargs/testsuite/Makefile.am: Fixed a typo.
3159         * NEWS: Indicate the d_type performance improvement
3161 2005-01-18  James Youngman  <jay@gnu.org>
3163         * lib/savedirinfo.h: Added on d_type_optimisation also
3165         * lib/savedirinfo.c: Added on branch d_type_optimisation also.
3167         * find/pred.c: Added assert that we actually know the file type by
3168         the time pred_type() is called
3170         * find/find.c: Always initialise state.have_stat = false when
3171         starting to work with a new file
3173 2005-01-17  James Youngman  <jay@gnu.org>
3175         * ChangeLog: Brought up to date with recent changes.
3177         * NEWS: Documented the changes so far.
3179         * find/testsuite/find.gnu/exec-many-rtn-success.xo:
3180         Expected output for exec-many-rtn-success.exp
3182         * find/find.1:
3183         Indicate that -quit still ensures that pending commands are invoked
3185         * doc/find.texi:
3186         Indicate that -quit still causes partial command lines to be invoked,
3187         but there are some types of fatal error which leave such commands
3188         uninvoked.
3190         * find/defs.h, find/find.c, find/pred.c, find/testsuite/Makefile.am, find/testsuite/config/unix.exp:
3191         Fixed savannah bug  #11625 Wrong return status for -exec ... \; when command fails; also execute any pending commands when doing -quit
3193         * find/testsuite/find.gnu/exec-many-rtn-failure.exp, find/testsuite/find.gnu/exec-many-rtn-failure.xo, find/testsuite/find.gnu/exec-many-rtn-success.exp, find/testsuite/find.gnu/exec-one-rtn-fail.exp, find/testsuite/find.gnu/exec-one-rtn-fail.xo, find/testsuite/find.gnu/exec-one-rtn-success.exp, find/testsuite/find.gnu/exec-one-rtn-success.xo:
3194         Various test cases for succeeding and failing forms of -exec \; and -exec {} +
3196         * find/pred.c: "-exec ... {} +" always returns "true".
3198         * configure.in, find/defs.h, find/find.c, find/parser.c, find/pred.c, find/tree.c, find/util.c:
3199         Implemented d_type optimisation but not working correctly, so currently disabled
3201         * lib/savedirinfo.h, lib/savedirinfo.c:
3202         Initial implementation (temporarily disabled).
3204         * lib/Makefile.am: Resolved merge conflict.
3206         * lib/Makefile.am:
3207         Make sure nextelem.h is included in the list of sources.
3209         * find/parser.c, lib/nextelem.c, lib/nextelem.h, locate/locate.c:
3210         Use prototypes for next_element() to make sure it is called correctly.
3212 2005-01-16  James Youngman  <jay@gnu.org>
3214         * find/find.c, find/pred.c:
3215         When completing incomplete multiple execs, use 'eval_tree' not 'predicates'
3217         * lib/buildcmd.c:
3218         Oops, initialise state->cmd_initial_argv_chars to zero.
3220         * find/find.1:
3221         Document the way that -execdir and -okdir will refuse to wqork if ">"
3222         is on $PATH.  Also document -okdir in the manpage.
3224         * find/parser.c:
3225         -execdir and -okdir are insecure if $PATH includes the current
3226          directory, and so they refuse to work if the user has done that.
3228         * find/pred.c:
3229         Oops; for -exec ... {} +, pass arguments to bc_push_arg() in the right
3230         order.   Problem spotted by Geoff Clare.
3232         * TODO: Removed items which have now been done.
3234         * lib/buildcmd.c: Tidied up formatting of arg list for bc_do_insert
3236 2005-01-15  James Youngman  <jay@gnu.org>
3238         * find/testsuite/find.gnu/printf.exp, find/testsuite/find.gnu/printf.xo:
3239         Added extra tests for more printf formats; patch by Andreas Metzler
3241         * locate/locate.c:
3242         Ensure that the new long options have a relevang short option too.
3243         Also bring usage message into line with the options actually
3244         supported.  Thanks to Bas van Gompel for noticing this defect.
3246         * locate/locate.1:
3247         Escape "-" in SYNOPSIS.  Thanks to Bas van Gompel for noticing this
3248         defect.
3250         * ChangeLog: Fixed typos.
3252         * doc/find.texi:
3253         Documented -execdir, and the "+" variants of -exec and -execdir.
3255         * find/find.1: Documented -execdir.
3257         * xargs/xargs.c:
3258         Updated to bring into line with bc_*() interface changes
3260         * ChangeLog: Updated with recent changes.
3262         * find/defs.h, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h:
3263         Implemented -execdir and -okdir
3265         * find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
3266         First working version of -exec ...+
3268 2005-01-09  James Youngman  <jay@gnu.org>
3270         * find/defs.h, find/find.c, find/parser.c, find/pred.c, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
3271         Initial implementation of -exec ..{} +, but currently disabled since not yet working
3273 2005-01-08  James Youngman  <jay@gnu.org>
3275         * find/find.c: Fixed typo in comment.
3277         * find/defs.h, find/find.c, find/parser.c, find/pred.c:
3278         We now understand but do not implement -execdir (a *BSD invention, and a very useful security enhancement) and -okdir (the obvious companion to it)
3280         * locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, xargs/xargs.c:
3281         The GNU coding standard requires a space between the function name and
3282         its parenthesised argument list.
3284         * find/defs.h:
3285         Understand the -exec ... {} \+ construction (for multiple
3286         replacement).  No support yet.
3288         * locate/locate.1:
3289         Indicate that empty elements in the dbpath are treated as synonyms for
3290         the default database.
3292         * locate/locate.c:
3293         Support empty elements in the dbpath as synonyms for the default
3294         database.  These colons can be leading, trailing or in the middle of
3295         the string.  We no longer com,plain if the user does this.
3297         * lib/nextelem.c:
3298         If curdir_ok is 0 and an element is empty, return "" instead of NULL
3299         so that the caller knows to keep calling us.
3301         * find/find.c, find/pred.c, import-gnulib.sh, locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, xargs/xargs.c:
3302         Savannah bug 11517: find, xargs, locate, etc. should not hide write failures; patch from Jim Meyering
3304         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
3305         changed .pot creation date
3307         * THANKS, AUTHORS: Take into account the FSF copyright-assignments list
3309         * doc/find.texi:
3310         If -quit is used, the exit value can be nonzero if errors have occurred.
3312         * find/find.1:
3313         Removed incorrect comment about -H, -P and -follow in HISTORY.
3315 2005-01-07  James Youngman  <jay@gnu.org>
3317         * lib/Makefile.am, lib/buildcmd.c, lib/buildcmd.h, xargs/xargs.c:
3318         Refactored xargs to use an external library function from the new file buildcmd.c
3320         * configure.in: no longer the same as the released 4.2.11 version
3322 2005-01-06  James Youngman  <jay@gnu.org>
3324         * xargs/testsuite/inputs/lines.xi, xargs/testsuite/xargs.posix/l2.exp, xargs/testsuite/Makefile.am:
3325         Tests for the -L option
3327         * xargs/testsuite/config/unix.exp: When a test fails, show the diffs
3329         * xargs/testsuite/xargs.posix/l2.exp, xargs/testsuite/xargs.posix/l2.xo:
3330         tests for the -l option
3332         * xargs/testsuite/Makefile.am: Added extra test files
3334         * xargs/testsuite/xargs.sysv/trace.exp, xargs/testsuite/xargs.sysv/trace.xe, xargs/testsuite/xargs.sysv/trace.xo:
3335         Added tests for the -t option
3337         * xargs/testsuite/config/unix.exp, xargs/testsuite/inputs/foobar.xi, xargs/testsuite/xargs.gnu/r.exp, xargs/testsuite/xargs.gnu/r.xo, xargs/xargs.1:
3338         Use a blanks-only input file for cases where there is supposed to be no output
3340         * xargs/testsuite/inputs/blank.xi: Initial version.
3342         * xargs/xargs.1:
3343         Corrected a typo; also indicate that it's impossible to use xargs
3344         securely due to the race condition.
3346 2005-01-05  James Youngman  <jay@gnu.org>
3348         * find/parser.c:
3349         Fixed Savannah bug 11495: fallthrough from -printf format processing
3350         from 'n' case to 'd' case.
3352 2005-01-03  James Youngman  <jay@gnu.org>
3354         * doc/find.texi:
3355         Oops.  Had duplicated an entire section.  Fortunately this was after
3356         @bye, so there was no adverse effect.
3358         * NEWS: locate -b.
3360         * doc/find.texi, locate/locate.1: document locate -S
3362         * configure.in, doc/find.texi, locate/locate.1, locate/locate.c:
3363         Support locate -b as a synonym for locate --basename
3365         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
3366         distcheck
3368         * find/testsuite/config/unix.exp:
3369         Clean up (delete) find.out at at the end of the test.
3371         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/parser.c, find/pred.c:
3372         Implemented the -samefile test for find
3374 2005-01-02  James Youngman  <jay@gnu.org>
3376         * ChangeLog: Updated with recent changes.
3378         * NEWS:
3379         Bas van Gompel: two-line patch to locate.c to make locate's -i and -w
3380         options work if -e is in use.
3382         * THANKS: Added Bas van Gompel.
3384         * locate/locate.c:
3385         Bas van Gompel: (visit_exists) when testing for the existence of the
3386         file, check the real filename [printname], not the case-converted
3387         filename [testname].  Really these argument names are badly chosen.
3389         * find/find.1, doc/find.texi:
3390         Improved the documentation for -perm, with plenty of examples,
3391         following a comment by Dan Jacobson that the comment "Symbolic modes
3392         use mode 0 as a point of departure" is baffling and unhelpful.
3394         * locate/locate.c:
3395         Suggestion and patch from Bas van Gompel: (new_locate): Fix display of
3396         negative compression ratios.
3398 2004-12-31  James Youngman  <jay@gnu.org>
3400         * NEWS: Brought up to date with recent changes
3402         * doc/find.texi:
3403         Don't need to nest the "race conditions with..." sections so deeply.
3405         * doc/find.texi: Corrected some spelling errors.
3407         * doc/find.texi: Added new "Security Considerations" chapter.
3409 2004-12-23  James Youngman  <jay@gnu.org>
3411         * locate/locate.c:
3412         Applied bugfixes from Bas van Gompel <patch-findutils.buzz@bavag.tmfweb.nl>.
3413         (lc_strcpy): Zero-terminate result.
3414         (add_visitor): Update lastinspector.
3415         (visit_substring_match_casefold): fix off-by-one error.
3416         (new_locate): Move visit_exists down to improve performance.
3417         (new_locate): Don't fold case when getting stats.
3419 2004-12-19  James Youngman  <jay@gnu.org>
3421         * doc/find.texi:
3422         Indicate that "cd /; find tmp -wholename /tmp" will never match anything.
3424         * doc/find.texi: Documented locate --statistics.
3426         * locate/locate.1: Documented the --statistics option.
3428         * locate/locate.c: Added support for the -S option.
3430 2004-12-12  James Youngman  <jay@gnu.org>
3432         * NEWS: Added a summary of the changes so far.
3434         * find/tree.c: Made some of the error messages more self-explanatory
3436         * find/pred.c: Print pointers with %p, not %x.
3438         * find/find.c: Moved option data into struct options.
3440         * find/find.1: clarifications
3442         * find/testsuite/find.gnu/comma.exp:
3443         Limit the amount of searching with maxdepth.
3445         * doc/find.texi: clearer description of how -prune works
3447         * ChangeLog: Removed duplicate entry.
3449         * configure.in, find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, find/tree.c, find/util.c:
3450         Separated ariables representing current state from variable representing option information
3452 2004-12-11  James Youngman  <jay@gnu.org>
3454         * find/parser.c: Readability improvement to the usage message.
3456         * find/find.c: Oops.  Fixed unmatched #endif.
3458         * find/testsuite/find.gnu/printf.exp, find/testsuite/find.gnu/printf.xo, THANKS, configure.in, find/testsuite/Makefile.am, find/testsuite/config/unix.exp:
3459         Fixed Savannah bug #11280
3461         * find/find.c:
3462         Remember to set path_length and curdepth in process_top_path().
3464 2004-12-07  James Youngman  <jay@gnu.org>
3466         * find/fstype.c: Use xstat() not stat() to examine things.
3468         * find/find.c: Explain why #ifdef EOVERFLOW.
3470         * find/find.c: EOVERFLOW is not defined on UNICOS.
3472         * NEWS: Corrected typo.
3474 2004-12-06  James Youngman  <jay@gnu.org>
3476         * ChangeLog: Brought up to date.
3478         * NEWS, configure.in: releasing 4.2.10
3480         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
3481         distcheck
3483         * ChangeLog: Updated prior to release of finsutils-4.2.10.
3485         * import-gnulib.sh, find/fstype.c:
3486         Use gnulib's mountlist module instead of grokking it ourselves.
3488         * configure.in:
3489         Removed all the out-of-date cruft for grokking getmntent().
3491         * xargs/xargs.c:
3492         Added the -I and -L options; also -E takes an argument which is not optional.
3494 2004-12-05  James Youngman  <jay@gnu.org>
3496         * README, configure.in, find/defs.h, find/find.c, find/parser.c, find/pred.c, find/tree.c:
3497         Allow debug output to be turned on or off by saying --enable-debug on the configure command line
3499         * README:
3500         Removed disparaging (it is now, it probably wasn't then) comment about
3501         the production-readiness of Automake.
3503         * README: Qualify remarks about POSIX compliance.
3505         * NEWS, configure.in: Preparation for release 4.2.9
3507         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
3508         distcheck
3510         * ChangeLog: Brought up to date.
3512         * find/find.c:
3513         Avoid duplicate error message when we cannot chdir() into a subdirectory.
3515         * THANKS: Added recent thankees.
3517         * NEWS:
3518         Brought up to date with respect to the current set of fixed bugs.
3520         * NEWS, xargs/xargs.1, xargs/xargs.c:
3521         Implemented POSIX options -L, -I and -E
3523 2004-12-03  James Youngman  <jay@gnu.org>
3525         * find/parser.c:
3526         -xdev is an option, not a test.   Fixes Savannah bug 11192.
3528         * find/find.1, xargs/xargs.1:
3529         Escape dashes with a backslash (for fix Savannah bug 11189).
3531 2004-11-27  James Youngman  <jay@gnu.org>
3533         * find/find.c:
3534         More use of safely_chdir(). Also bugfix: -L should imply -noleaf.  Be more careful about when xstat should fall back on lstat() when stat() fails.
3536         * find/find.1: "necessary" only has one "C".
3538         * find/find.1:
3539         If stat() fails with ELOOP, we issue a diagnostic message.
3541 2004-11-26  James Youngman  <jay@gnu.org>
3543         * find/find.c: Removed some unused code.
3545         * Makefile.am: Don't do anything in the 'intl' subdirectory
3547         * find/find.c:
3548         Enhanced safely_chdir() to the point where the test suite passes, and report infinite loops in the directory hierarchy
3550         * find/defs.h:
3551         belt and braces; ensure that SYMLINK_NEVER_DEREF has value zero
3553         * find/find.1:
3554         Describe our strategy for detecting and reporting infinite loops
3556 2004-11-24  James Youngman  <jay@gnu.org>
3558         * doc/find.texi:
3559         Updated the discussion of th error messages for findutils-4.2.8.
3561         * configure.in: Next version will be 4.2.9...
3563         * find/find.c:
3564         Don't issue a warning if we notice the mounting of a filesystem that's
3565         likely just to be an automounter.
3567         * doc/find.texi, find/find.1:
3568         Explain how rounding is performed for -atime and friends.
3570         * xargs/xargs.c:
3571         Once we collect enough arguments (for the value specified by the -n
3572         option) to do an exec(), do it immediaely instead of waiting for the
3573         next one to arrive.  This fixes Savannah bug #7340.
3575         * ChangeLog, configure.in, NEWS: Prepare to release 4.2.8.
3577         * NEWS: Updates for 4.2.8.
3579         * configure.in: check for  sys/types.h
3581         * find/find.c:
3582         If wd_sanity_check() discovers that the mount table has changed, remember the updated device number and inode so that we also consider these to be valid on the way back up.
3584         * find/defs.h:
3585         Declarations of xmalloc() and friends belong in xalloc.h, not in defs.h
3587         * find/parser.c: avoid signed/unsigned warning, and #include xalloc.h
3589         * find/fstype.c:
3590         Changed to alloc get_mounted_devices() to compile on Solaris
3592         * README-CVS:
3593         Automake requires GNU m4, so point out that the reader needs that.
3595         * find/defs.h, find/find.c, find/fstype.c:
3596         When wd_sanity_check() fails, enumerate the mounted devices, rather than the mounted filesystem names
3598         * NEWS: prepare for 4.2.8
3600         * configure.in:
3601         Look for some Solaris headers which are used by get_mounted_devices()
3603         * lib/Makefile.am: don't build savedirtypes yet
3605         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
3606         updated po files
3608         * m4/nullsort.m4:
3609         Avoid suprious output of the test data when the tests fail.
3611 2004-11-21  James Youngman  <jay@gnu.org>
3613         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
3614         Messages changed again
3616         * ChangeLog, configure.in: Preparing to release 4.2.7.
3618         * NEWS: Updated for release of 4.2.7.
3620         * import-gnulib.sh: Also need canonicalize module.
3622         * find/find.c:
3623         When checking to see if a filesystem has changed state, use an
3624         absolute pathname.
3626         * configure.in:
3627         No need to pause to allow James to view his handiwork, it (allegedly)
3628         works now.
3630         * configure.in:
3631         Oops.  Check for setlocale() to re-enable the i18n support which was
3632         accidentally disabled in 4.2.5.
3634         * find/find.c:
3635         Check to see if the new directory is a transitioned mount point by
3636         using its ABSOLUTE name, if we can figure it out.
3638         * doc/find.texi:
3639         Added guidance on some of the error messages.  Not the most common
3640         ones, but the ones where the user might most benefit from some handy
3641         hints or an explanation of what is going on.
3643         * find/pred.c:
3644         Actually emit an error message if we fail to stat a symlink (for
3645         reasons other than nonexistence of the link and infinite loop).
3647         * doc/texinfo.tex: Updated texinfo.tex
3649         * NEWS, configure.in, find/find.c, find/fstype.c:
3650         Enable the 'Warning: filesystem XXX has recently been mounted' check on Solaris, which prevents it exiting fatally when traversing an automount mount point
3652         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
3653         messages changed again
3655         * NEWS: Implemented xargs --arg-file.
3657         * doc/find.texi, xargs/xargs.1, xargs/xargs.c, NEWS:
3658         Implemented xargs --arg-file
3660         * find/find.c:
3661         Where a filesystem was recently (un)mounted, try togive its full name
3663         * configure.in:
3664         Try to avoid requesting -lsun if we don't seem to need it (e.g. on
3665         UNICOS where it is not present and trying to link against it produces
3666         a warning).
3668         * find/defs.h, lib/modetype.h: Guard against multiple inclusion
3670         * find/fstype.c:
3671         We now need <mntent.h> even if we are not using getmntent() to figure
3672         out the type of a filesystem, because wd_sanity_check() needs to
3673         enumerate the system mount points.
3675         * configure.in: Next release will be 4.2.7.
3677         * find/fstype.c:
3678         get_mounted_filesystems() should use getmntent() if that function is
3679         present, rather than just if configure didn't find anything better for
3680         filesystem_type_uncached() to use than that.
3682         * find/parser.c:
3683         If -delete is the only action on a file, don't assume the default
3684         -print action too.
3686         * ChangeLog, configure.in, po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
3687         Preparation to release findutils-4.2.6.
3689         * find/Makefile.am, xargs/Makefile.am:
3690         Enable checking of support for --version and --help
3692         * locate/Makefile.am:
3693         Con't check command-line options for frcode, code or bigram
3695         * locate/code.c: Support --version and --help.
3697         * ChangeLog: *** empty log message ***
3699         * find/defs.h, find/find.c, find/fstype.c, lib/Makefile.am, lib/extendbuf.c, lib/extendbuf.h, NEWS:
3700         Avoid fatal error if automount mounts a filesystem on a directory because we chdir()ed into it
3702         * configure.in: Next release will be 4.2.6.
3704         * find/find.1:
3705         Indicate that the '-' flag does work for most fields.   Also provide
3706         an example of using the comma operator to traverse the filesystem just
3707         once but search for more than one thing.
3709         * doc/find.texi: Indicate that the '-' flag does work for most fields.
3711 2004-11-19  James Youngman <jay@gnu.org>
3713         * configure.in: releaseing findutils-4.2.5
3715         * find/testsuite/Makefile.am, locate/testsuite/Makefile.am, xargs/testsuite/Makefile.am:
3716         If a directory has no Makefile.am, omit it from the parent's DIST_SUBDIRS - automake-1.9 requires this
3718         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
3719         updated by make distcheck
3721         * ChangeLog, NEWS: Updated for release 4.2.5.
3723         * find/find.1, doc/find.texi:
3724         Tell the reader that format flags may not work as they expect.
3726         * configure.in:
3727         Use the correct name for the macro gl_AC_TYPE_LONG_LONG (not
3728         jm_AC_TYPE_LONG_LONG).
3730 2004-11-15  James Youngman <jay@gnu.org>
3732         * import-gnulib.sh:
3733         Avoid test -e because not all systems are POSIX-compliant (bug
3734         #11005).  Also don't need regex module any more if we're not building
3735         in intl.
3737         * Makefile.am, configure.in:
3738         These days gnulib likes to include 'libintl.h' which our very old intl/ directory lacks.   For the moment, disable use of the internal intl/ directory
3740         * doc/find.texi:
3741         Use @ref not @xref for a reference at the beginning of a sentence.
3743         * intl/Makefile.in:
3744         Make sure gnulib.lib is on the #include path (Savannah bug #11002)
3746         * locate/locate.c:
3747         Use base_name instead of basename - fixes Savannah bug 11003.
3749         * configure.in, find/defs.h, find/find.c, find/parser.c, find/pred.c, locate/bigram.c, locate/locate.c:
3750         Don't need banner to emphasise the location of the call to jy_SORTZ
3752 2004-11-12  James Youngman <jay@gnu.org>
3754         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/parser.c, find/pred.c, find/testsuite/find.gnu/posix-dflt.exp, find/testsuite/find.gnu/posix-dflt.xo, find/testsuite/find.gnu/posix-h.exp, find/testsuite/find.gnu/posix-h.xo, find/testsuite/find.gnu/posix-l.exp, find/testsuite/find.gnu/posix-l.xo, find/util.c:
3755         Implemented BSD option -P and also the correct default behaviour of find with respect to symlinks if neither -L nor -H is specified [i.e. same as -P]
3757 2004-11-11  James Youngman <jay@gnu.org>
3759         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/parser.c:
3760         Implemented -H and -L options.
3762         * find/util.c: Added in the -H and -L options on the usage message.
3764 2004-11-10  James Youngman <jay@gnu.org>
3766         * doc/find.texi, find/find.1, find/parser.c, find/pred.c:
3767         Implemented %M and %A+ format specifiers
3769         * doc/find.texi, find/find.1, find/parser.c, find/pred.c:
3770         Documented the fact that only %d and %m format specifiers honour the various formatting flags
3772         * xargs/xargs.c:
3773         Get the right number of bytes in a Kilobyte (hint: it's not 1048; that
3774         was a typo, honest :)
3776         * po/pl.po: Applied Polish translations
3778 2004-11-08  James Youngman <jay@gnu.org>
3780         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po:
3781         distcheck changed the po files again
3783         * locate/Makefile.am:
3784         Make install-data-hook honour the setting of DESTDIR so that "make
3785         DESTDIR=/tmp/foo install" works and puts localstater in the right
3786         place.
3788         * configure.in: We're now working on findutils-4.2.5.
3790         * doc/find.texi, xargs/xargs.1:
3791         Point out that xargs -i only splits input items at newlines
3793         * ChangeLog: Indicate that we released 4.2.4.
3795         * ChangeLog: Updated for release 4.2.4
3797         * NEWS, configure.in: Prepare for release of 4.2.4.
3799         * NEWS: Brought up to date with latest changes.
3801         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/find.c, find/parser.c, po/da.po, po/de.po, po/es.po, po/findutils.pot, po/gl.po, po/id.po, po/ko.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po:
3802         Turn warning messages off by default if stdin is not a tty; allow these to be controlled explicitly by options -warn and -nowarn
3804         * po/et.po, po/it.po: Updated translation files
3806         * po/sk.po: New translation file
3808         * po/fr.po, po/nl.po, po/tr.po: Updated translation files
3810         * configure.in: Added Slovak (sk) language.
3812         * xargs/xargs.c:
3813         Enforcing a lower limit on the value specified by -s makes the test
3814         suite fail.  Removed that lower limit.
3816         * locate/Makefile.am: Oops, multilocate doesn't exist yet.
3818         * NEWS: *** empty log message ***
3820         * doc/find.texi, locate/updatedb.1, locate/updatedb.sh:
3821         Added option --findoptions to updatedb
3823         * locate/Makefile.am, locate/locatedb.5, locate/updatedb.1, xargs/xargs.1:
3824         Fixed section numbers in manpage titles and cross-references
3826         * NEWS, doc/find.texi, xargs/xargs.1, xargs/xargs.c:
3827         Increased the default argument length and improved POSIX compliance of the handling of out-of-range values for the -s option
3829 2004-11-07  James Youngman <jay@gnu.org>
3831         * m4/Makefile.am:
3832         Added in the extra files we need to distribute, nullsort.m4
3833         order-bad.bin order-good.bin
3835         * doc/find.texi: Documented locate's --limit option
3837         * locate/locate.1, locate/locate.c:
3838         Implmented --limit and corrected the implementation of the -i option.
3840 2004-11-06  James Youngman <jay@gnu.org>
3842         * NEWS, doc/find.texi, locate/locate.1:
3843         Documented --wholename and --basename and updated the NEWS file
3845         * README-CVS:
3846         Give the autogen commands in a form that you can usefully cut and paste into a shell
3848         * NEWS: Options --null and --count) for locate
3850         * lib/nextelem.c:
3851         Don't return '.' for an empty path element, because the path we are splitting may not be intended to contain directories
3853         * configure.in: we're working on findutils-4.2.4 now
3855         * locate/Makefile.am: Substitute @SORT_SUPPORTS_Z@
3857         * doc/find.texi:
3858         Documented new locate option --null and newline handling
3860         * locate/locate.1, locate/locate.c:
3861         New locate options --null, --wholename, --basename, --count
3863         * locate/frcode.c, locate/updatedb.1, locate/updatedb.sh:
3864         correctly handle newlines in the file names
3866         * configure.in: Determine if sort -z works
3868         * m4/nullsort.m4, m4/order-bad.bin, m4/order-good.bin:
3869         jy_SORTZ: a macro to determine if the system has a sort command with a working -z option
3871 2004-11-01  James Youngman <jay@gnu.org>
3873         * NEWS: Fixed "find -printf '%H\n'".
3875         * find/find.c:
3876         Avoid segfault if -printf %H is used where the matched file was the default, unspecified starting point, the current directory
3878 2004-10-31  James Youngman <jay@gnu.org>
3880         * find/find.1, find/parser.c: NetBSD also supports -d.
3882         * find/find.1, doc/find.texi:
3883         Documented the behaviour of -daystart and -follow in more detail
3885         * find/parser.c: Corrected the usage message.
3887         * find/parser.c:
3888         When deciding whether to issue a warning about options following
3889         non-options, ignore any options whose position affects the tests
3890         (i.e. -daystart and -follow).
3892         * find/parser.c: -daystart is a positional option like -follow.
3894         * find/parser.c:
3895         Issue a warning message if an option is specified after a test or an
3896         action (because the user might have believed that the behaviour of the
3897         option is in some way conditional on the preceding tests).
3899         * locate/updatedb.sh:
3900         Oops; removed some test code that I shouldn't have checked in.
3902         * locate/updatedb.sh:
3903         Indicate that the old locate database format will shortly be unsupported.
3905         * doc/find.texi:
3906         Use @direntry instead of hard-coding START-INFO-DIR-ENTRY inside @ifinfo.
3908         * locate/updatedb.1: Updated default location of locatedb file.
3910         * README-alpha:
3911         Updated to give correct FTP location and to not talk about "test"
3912         versions of automake, which are no longer required.
3914         * locate/updatedb.sh:
3915         Incorporated the default list of filesystems to avoid from the Debian
3916         package.  Also added /afs and /sfs to the default pruned paths.
3918         * configure.in: Released findutils 4.2.3
3920         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po:
3921         did make distcheck, which updates these files
3923         * find/defs.h, find/fstype.c:
3924         Use const qualifier in arguments to filesystem_type() to allow callers with const variables to use them
3926         * ChangeLog: Updated.
3928         * NEWS: Added new news.
3930         * find/find.c:
3931         Extra diagnositcs for the case where we have the error "%s changed
3932         during execution of %s" - that is when we chdir back to the parent
3933         directory only to find that it has changed.
3935 2004-10-30  James Youngman <jay@gnu.org>
3937         * .cvsignore, NEWS, doc/find.texi, find/defs.h, find/find.1, find/parser.c, find/pred.c:
3938         Implemented the -quit action
3940         * NEWS, doc/find.texi, find/find.1, find/parser.c, find/pred.c:
3941         Refactored time handling routines in preparation for support of absolute timestamp comparison predicates
3943         * locate/locate.c:
3944         Applied Savannah patch #2952 ("getline off-by-one bugfix").
3946         * NEWS, doc/find.texi, find/defs.h, find/find.1, find/parser.c, find/pred.c:
3947         Added -delete action (Savannah patch #3454 with additions)
3949         * locate/locate.c:
3950         Applied Savannah patch #2692 (allowing get_short to process negative integers).
3952         * find/find.c:
3953         If we are iossuing an error message because $FIND_BLOCK_SIZE is set,
3954         ignore the setting of errno.
3956         * find/parser.c: More fixes for pedantic compiler warnings
3958         * NEWS, find/parser.c, find/tree.c: Eliminated some compiler warnings
3960         * find/find.c, find/parser.c, find/pred.c:
3961         Various fixes for compiler warninga sbout unreachable code or unused function arguments
3963         * intl/plural.y: Silence compiler warning about unused argument.
3965         * locate/testsuite/Makefile.am:
3966         Subdirectory "inputs" does not exist, so remove it from DIST_SUBDIRS.
3968         * locate/locate.c:
3969         Corrected the explanation of why we have to use no parentheses around
3970         the String argument to the N_ macro in its expansion.
3972         * configure.in: Nextr release is 4.2.3.
3974         * configure.in: IOndicate this is no longer the pristine release.
3976         * NEWS:
3977         Oops, comments for release 4.2.0 should have said 20480 bytes, not 2480.
3979         * lib/listfile.c:
3980         The -ls predicate should not truncate usernames.  Fixes Savannah bug #10800.
3982         * find/fstype.c, locate/locate.c:
3983         Fixes for Savannah bug #3727 (Intel icc compilation errors).
3985 2004-10-25  James Youngman <jay@gnu.org>
3987         * doc/find.texi, find/find.1, find/parser.c, find/pred.c:
3988         Support -printf %D, which prints the device number of the containing filesystem
3990         * locate/updatedb.sh:
3991         Avoid confusion between James Woods and James Youngman, by using the
3992         disambiguating surname.
3994         * find/parser.c: Use RE_ICASE instead of re->translate.
3996         * configure.in, find/parser.c, find/pred.c, xargs/xargs.c:
3997         No need to #define _GNU_SOURCE if we use gl_INIT.
3999 2004-10-24  James Youngman <jay@gnu.org>
4001         * ChangeLog: Prepared to release findutils-4.2.2.
4003         * ChangeLog, NEWS, po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po:
4004         Updates prior to release of 4.2.2
4006         * NEWS: Updated with news for findutils-4.2.2.
4008         * find/testsuite/config/unix.exp, lib/forcefindlib.c, lib/listfile.c, lib/modetype.h, lib/nextelem.c, locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, locate/locatedb.h, locate/testsuite/config/unix.exp, locate/updatedb.sh, xargs/testsuite/config/unix.exp, xargs/xargs.c, NEWS, find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, find/tree.c, find/util.c, import-gnulib.sh:
4009         Corrected typo in the address of the FSF office
4011         * lib/strspn.c: Updated FSF address.
4013         * m4/.cvsignore: 'cvs status' should ignore Makefile.in
4015         * m4/Makefile.am, Makefile.am, NEWS, README-CVS, configure.in, doc/texinfo.tex, find/defs.h, find/fstype.c, find/parser.c, find/pred.c, import-gnulib.sh, intl/bindtextdom.c, intl/dcgettext.c, intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c, intl/dngettext.c, intl/explodename.c, intl/finddomain.c, intl/gettext.c, intl/intl-compat.c, intl/l10nflist.c, intl/loadmsgcat.c, intl/localcharset.c, intl/localealias.c, intl/ngettext.c, intl/plural.y, intl/textdomain.c, lib/Makefile.am, lib/forcefindlib.c, lib/listfile.c, lib/nextelem.c, lib/strspn.c, lib/waitpid.c, locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, m4/findlib.m4, po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po, xargs/xargs.c:
4016         Use gnulib-tool --import to import the gnulib code, rather than the odd way we were doing it before
4018         * find/find.c, find/fstype.c, find/parser.c, find/pred.c, find/tree.c, find/util.c, locate/code.c, locate/locate.c, xargs/xargs.c:
4019         Work round an apparent compiler bug in HP-UX 11.23 for
4020         ia64
4022         * locate/locate.c:
4023         Work around what appears to be a C compiler bug in HP-UX 11.23 for
4024         ia64.
4026         * INSTALL, depcomp, install-sh, missing, mkinstalldirs:
4027         Updated from automake
4029         * locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, xargs/xargs.c, find/find.c:
4030         Avoid use of exit() within main, to silence warnings about unreachable code
4032 2004-10-22  James Youngman  <jay@gnu.org>
4034         * doc/find.texi: Syntax corrections.
4036         * doc/find.texi: Indicate that "-exec {}+" is not yet supported.
4038         * find/find.1: Indicate that "{}+" is not yet supported.
4040         * find/testsuite/find.gnu/name-period.xo, find/testsuite/find.gnu/name-period.exp, find/find.1, doc/find.texi:
4041         The -name predicate must allow '*' to match '.foo' as demanded by IEEE
4042         Std 1003.2-1992 Interpretation #126.
4044         * find/pred.c:
4045         Remove use of FNM_PERIOD for -name as demanded by IEEE Std 1003.2-1992
4046         Interpretation #126
4048         * find/parser.c: Fix for compilation (on AIX 4.3) with GCC 2.x.
4050         * xargs/xargs.c:
4051         Changed the erorr message issued when there is an unmatched quote to
4052         point out that the user might have wanted to use the -0 option instead.
4054 2004-10-17  James Youngman  <jay@gnu.org>
4056         * configure.in:
4057         Define intmax_t if it is not already defined - allows parser.c to compile on AIX 4.3
4059         * configure.in:
4060         Adjust version number to indicate that this s/w has moved on since the
4061         4.2.1 release.
4063         * configure.in: preparing to release 4.2.1
4065         * ChangeLog: updated with current changes
4067         * README-CVS: Updated to go with newer version of gnulib.
4069         * po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po:
4070         preparation for release
4072         * NEWS: Mention the changes to "trap".
4074         * NEWS: Brought up to date.
4076         * import-gnulib.sh:
4077         Use xalloc-die module from gnulib, since that has now been split out
4079         * find/parser.c:
4080         Check fnmatch() when other predicates that rely on fnmatch() are used.
4082         * find/parser.c: bug #10701: find needs fnmatch sanitycheck on startup
4084 2004-10-16  James Youngman <jay@gnu.org>
4086         * import-gnulib.sh:
4087         Switch to requirement for GNU fnmatch because it supports FNM_CASEFOLD.
4089         * locate/updatedb.sh:
4090         Bug #9465: use of signal numbers for 'trap' is deprecated.  Should use
4091         names instead.  See
4092         http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html,
4093         which indicates that support for signal numbers is optional, while
4094         support for signal names is mandatory.
4096         * configure.in:
4097         Indicate that this is the CVS version (once again) now that findutils
4098         4.2.0 has been released.
4100         * ChangeLog, configure.in, po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po:
4101         findutils 4.1.20 check-in for tagging
4103 2004-10-02  James Youngman <jay@gnu.org>
4105         * po/Makefile.in.in:
4106         Search in $(top_srcdir) for mkinstalldirs, since that's where we keep it.
4108         * NEWS: Brought up to date, organised more clearly, and tidied up.
4110         * NEWS: brought up to date with recent changes
4112         * locate/testsuite/config/unix.exp, locate/testsuite/locate.gnu/ignore_case1.exp, locate/testsuite/locate.gnu/ignore_case3.exp, locate/updatedb.sh:
4113         Added new option --changecwd to updatedb so that the 'cd /' which it does can be compatible with the requirements of the test suite.  Specifically, the test suite relies on being able to use relative pathnames
4115         * find/pred.c:
4116         Fixed usage of human_readable() in '%k' format specifier to fix a bug
4117         reported by Dmitry V. Levin (arguments to human_readable() were
4118         specified in the wrong order, which resulted in a floating-point
4119         error).
4121 2004-08-08  James Youngman <jay@gnu.org>
4123         * locate/updatedb.sh:
4124         cd to / to avoid inability to examine the current directory if we're
4125         invoked via cron (and hence in root's home directory for example).
4127         * doc/find.texi, find/find.1:
4128         Deprecate -path and -ipath in favour of -wholename and -iwholename
4130         * find/parser.c:
4131         As per RMS's suggestion, deprecate -path and -ipath in favour of
4132         -wholename and -iwholename.
4134         * locate/locate.c:
4135         Fixed Savannah bug #9923, in which get_short() returns large positive
4136         ints when it should be returning negative shorts.
4138         * xargs/xargs.1:
4139         Applied documentation improvements suggested by Dan Jacobson
4140         <jidanni@jidanni.org>.
4142         * xargs/xargs.c:
4143         Don't check size_of_environment against arg_max since that causes the
4144         test suite to fail.
4146         * xargs/xargs.1, xargs/xargs.c: Better documentation for the -i option
4148 2004-05-03  James Youngman <jay@gnu.org>
4150         * find/find.1:
4151         document the various suffixes for -size and also the new 
4152         option -ignore_readdir_race
4154         * locate/locate.c:
4155         Fixes Savannah bug #8623 (failure to check consistency of data 
4156         read from locate database)
4158         * locate/updatedb.sh:
4159         Resolves Savannah bug 4380, that updatedb generates an empty
4160         database if one of the commands fails
4162         * NEWS: Talk about -ignore_readdir_race
4164         * doc/find.texi:
4165         Documented -ignore_readdir_race and -noignore_readdir_race
4167         * find/find.c:
4168         -ignore_readdir_race should have no effect if the reason for the
4169          failure of stat(2) was anything other than ENOENT.
4171         * find/defs.h, find/find.c, find/parser.c:
4172         Fixed Savannah bug 4391 (readdir race condition leading to 
4173         spurious error messages)
4175 2004-04-24  James Youngman <jay@gnu.org>
4177         * README-CVS: Corrected the instructions for getting gnulib via CVS.
4179 2004-04-13  James Youngman <jay@gnu.org>
4181         * doc/find.texi:
4182         Actioned Savannah bug #8558 (find complains when it tries to recurse
4183         into directories that it had removed).
4185 2004-03-13  James Youngman <jay@gnu.org>
4187         * ChangeLog: Updated from checkin comments.
4189         * find/find.c:
4190         Oops, there is no access to the predicate name table if DEBUG is 
4191         not #defined.
4193         * find/parser.c:
4194         Detect arithmetic overflow (poorly) in insert_time(), which diagnoses
4195         the failure to handle large arguments to -mtime.  The existing code
4196         does careful computation and then bungs the value into a time_t, which
4197         ruins all our careful effort.  The new code is not a great
4198         improvement.  We just check the result to detect overflow, rather than
4199         actually avoiding the overflow.
4201         * find/find.c:
4202         Fixed Debian bug #185202 by checking for any trailing predicates after
4203         the top-level invocation of get_expr() has done its work.
4205         * locate/locate.1, xargs/xargs.1:
4206         Fixed Debian bug 175372, inappropriate 'L' suffixes on manual 
4207         page section indicators
4209         * find/find.1:
4210         Removed "L" suffixes from manual page section indicators, to fix
4211         Debian bug 175372.
4213         * debian/updatedb.conf:
4214         Updated with list of filesystems from current Debian release.  This
4215         includes devfs, for example.
4217         * xargs/xargs.1:
4218         Modified documentation of "-s" option to take into account the fix for
4219         Debian bug #176201.
4221         * xargs/xargs.c:
4222         Fixed Debian bug #176201, "xargs enviroment size limited to 20k", by
4223         reading a patch offered by Bob Proulx and implementing something
4224         substantially similar myself.
4226 2004-01-03  James Youngman  <jay@gnu.org>
4228         * xargs/xargs.c:
4229         Indicate that prep_child_for_exec() fixes Savannah bug #3992.
4231         * xargs/xargs.c:
4232         Attach the stdin of xargs' child process to /dev/null so that if it
4233         tries to read from its stdin it doesn't consume any of the list of
4234         files that xargs is trying to use.
4236         * find/find.1:
4237         Documented that the -regex option follows Gnulib's re_match() 
4238         implementation.
4240         * NEWS, locate/locate.c: Applied Savannah patch 2108
4242         * xargs/xargs.c: Applied Savannah patch 1500
4244         * find/find.1, doc/find.texi:
4245         Improved the documentation for the %k and %b format specifiers to
4246         -printf (Savannah bug #5034).  Also pointed out that this handling is
4247         different to that used by the "b" and "k" suffixes with "-size".
4249         * find/find.1: Improved the documentation for %k (Savannah bug #5034).
4251         * find/find.1:
4252         Improved the documentation for -print0 in the manpage, fixing Debian
4253         bug 111143.
4255         * README-CVS, find/pred.c, lib/listfile.c:
4256         Brought up-to-date with change in gnulib's human.c - we no longer 
4257         use human_readable_inexact(), because it is no longer provided.
4259 2003-08-08  James Youngman  <jay@gnu.org>
4261         * find/find.1:
4262         Documented the fact that -printf also supports the '\0' escape code.
4263         Added "STANDARDS CONFORMANCE" section.
4265 2003-08-02  James Youngman  <jay@gnu.org>
4267         * find/find.1:
4268         Explain that braces are not special when performing filename matching
4269         with -name.
4271         * find/find.1:
4272         added example of the use of -exec to the EXAMPLES section
4274         * find/fstype.c, locate/locate.c:
4275         Savannah bug #4295 - implicit declarations of ctype.h functions
4277         * locate/locate.c:
4278         Savannah bug #4279 - missing newline on locate help message
4280         * find/find.1, xargs/xargs.1:
4281         Improved discussion of the -print0 option of find and the -0 option of xargs
4283 2003-06-26  James Youngman  <jay@gnu.org>
4285         * import-gnulib.sh:
4286         Remove reference to nonexistent module "basename" ("dirname" exists
4287         and we already use that).
4289 2003-06-21  James Youngman  <jay@gnu.org>
4291         * doc/find.texi:
4292         Indicate that xargs stops immediately if a command exits with status 255
4294         * xargs/xargs.1:
4295         Document the fact that xargs exits immediately with an error message
4296         if the command it executes exits with a status of 255.
4298 2003-06-18  James Youngman  <jay@gnu.org>
4300         * find/find.1:
4301         Indicate that -fls and friends always create their output file
4303 2003-06-16  James Youngman  <jay@gnu.org>
4305         * ChangeLog, find/find.1, locate/locate.1, locate/locatedb.5, locate/updatedb.1, xargs/xargs.1:
4306         Added BUGS section to manual pages.   This section includes information about known bugs and how to report new bugs.
4308         * AUTHORS: Identify the current maintainer.
4310         * TODO: Removed the TODO items which have now been done.
4312         * THANKS: Added Bruno Haible and Bob Proulx.
4314         * xargs/xargs.c: xargs/xargs.c (DO_MULTIBYTE): New macro.
4315         (mbstrstr): New function.
4316         (do_insert): Use it instead of strstr.
4318         * config.guess, config.sub:
4319         Use config.guess and config.sub from automake
4321         * find/fstype.c:
4322         Bruno Haible: (fstype_to_string) Don't define this function if
4323         HAVE_F_FSTYPENAME_IN_STATFS is defined.
4325         * configure.in:
4326         Bruno Haible: Prefer the 4.4BSD API (if present) to the 4.3BSD API,
4327         because some 4.4BSD systems have <mntent.h> but no /etc/mtab file.
4329         * doc/find.texi, find/find.1:
4330         Applied patch 1498 (documenting the backslash escape sequence)
4332         * locate/updatedb.sh: Applied (my own version of) Savannah patch 1601.
4334         * doc/find.texi:
4335         Applied Savannah patch #1547 (document the fact that printf
4336         field-width specifiers are supported).
4338         * xargs/xargs.c:
4339         Applied Savannah patch #1499 (adds final newline to usage message).
4341 2003-06-14  James Youngman  <jay@gnu.org>
4343         * NEWS, configure.in:
4344         Updated version number to 4.2.0-CVS [not ready for release yet]
4346         * configure.in, doc/.cvsignore, doc/Makefile.in, find/.cvsignore, find/Makefile.am, find/Makefile.in, find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, find/testsuite/.cvsignore, find/testsuite/Makefile.in, find/testsuite/config/unix.exp, find/tree.c, find/util.c, import-gnulib.sh, intl/bindtextdom.c, intl/dcgettext.c, intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c, intl/dngettext.c, intl/explodename.c, intl/finddomain.c, intl/gettext.c, intl/intl-compat.c, intl/l10nflist.c, intl/loadmsgcat.c, intl/localcharset.c, intl/localealias.c, intl/ngettext.c, intl/plural.y, intl/textdomain.c, lib/.cvsignore
4347         also need stpcpy (e.g. for Solaris)
4349         * intl/dcigettext.c:
4350         plural_lookup: don't use a variable called "index", because we may
4351         have done "#define strchr index", in which case using a variable
4352         called index will prevent us calling strchr(p, ch) in the same scope.
4354         * find/defs.h, find/find.c, find/fstype.c, find/parser.c, find/pred.c, find/testsuite/config/unix.exp, find/tree.c, find/util.c, import-gnulib.sh, lib/Makefile.am, lib/listfile.c, lib/modetype.h, lib/nextelem.c, locate/bigram.c, locate/code.c, locate/frcode.c, locate/locate.c, locate/locatedb.h, locate/testsuite/config/unix.exp, locate/updatedb.sh, xargs/testsuite/config/unix.exp, xargs/xargs.c:
4355         Updated copyright years and the address of the FSF
4357         * aclocal.m4, config.h.in, configure:
4358         Removed files that are generated from other files (e.g. configure)
4360         * NEWS: Updated NEWS file for 4.1.20.
4362         * configure.in, lib/Makefile.am, po/POTFILES.in, po/da.po, po/de.po, po/es.po, po/et.po, po/findutils.pot, po/fr.po, po/gl.po, po/id.po, po/it.po, po/ko.po, po/nl.po, po/pl.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po:
4363         Updates to the i18n files to ensure that 'make dist' succeeds
4365         * lib/posix/.cvsignore, lib/posix/Makefile.am,
4366         lib/posix/Makefile.in, lib/posix/regex.h, lib/strftime.c,
4367         lib/strncasecmp.c, lib/strspn.c, lib/strstr.c, lib/strtol.c,
4368         lib/strtoul.c, lib/strtoull.c, lib/strtoumax.c, lib/wait.h,
4369         lib/waitpid.c, lib/xalloc.h, lib/xgetcwd.c, lib/xmalloc.c,
4370         lib/xstat.in, lib/xstrdup.c, lib/xstrtol.c, lib/xstrtol.h,
4371         lib/xstrtoul.c, lib/xstrtoul.h, lib/xstrtoumax.c, lib/yesno.c,
4372         locate/Makefile.am, locate/Makefile.in, locate/locate.c,
4373         locate/testsuite/Makefile.in, m4/.cvsignore, m4/ChangeLog,
4374         m4/Makefile.am, m4/Makefile.am.in, m4/Makefile.in, m4/README,
4375         m4/afs.m4, m4/assert.m4, m4/c-bs-a.m4, m4/check-decl.m4,
4376         m4/codeset.m4, m4/d-ino.m4, m4/d-type.m4, m4/error.m4,
4377         m4/fnmatch.m4, m4/fnmatchcase.m4, m4/fstypename.m4, m4/getline.m4,
4378         m4/gettext.m4, m4/glibc.m4, m4/glibc21.m4, m4/iconv.m4,
4379         m4/inttypes_h.m4, m4/isc-posix.m4, m4/jm-glibc-io.m4,
4380         m4/jm-macros.m4, m4/jm-mktime.m4, m4/lcmessage.m4, m4/libintl.m4,
4381         m4/link-follow.m4, m4/ls-mntd-fs.m4, m4/lstat-slash.m4,
4382         m4/lstat.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/memcmp.m4,
4383         m4/prereq.m4, m4/progtest.m4, m4/readdir.m4, m4/realloc.m4,
4384         m4/regex.m4, m4/st_dm_mode.m4, m4/st_mtim.m4, m4/stat.m4,
4385         m4/strerror_r.m4, m4/strftime.m4, m4/timespec.m4, m4/uintmax_t.m4,
4386         m4/ulonglong.m4, m4/xstrtoumax.m4, xargs/Makefile.am,
4387         xargs/Makefile.in, xargs/testsuite/Makefile.in,
4388         find/testsuite/Makefile.in, lib/.cvsignore, lib/Makefile.am,
4389         lib/Makefile.in, lib/alloca.c, lib/ansi2knr.1, lib/ansi2knr.c,
4390         lib/argmatch.c, lib/argmatch.h, lib/basename.c, lib/basename.h,
4391         lib/dirname.c, lib/dirname.h, lib/error.c, lib/error.h,
4392         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/fnmatch.c,
4393         lib/fnmatch.h, lib/getline.c, lib/getline.h, lib/getopt.c,
4394         lib/getopt.h, lib/getopt1.c, lib/human.c, lib/human.h,
4395         lib/idcache.c, lib/malloc.c, lib/memcmp.c, lib/memcpy.c,
4396         lib/memset.c, lib/mktime.c, lib/modechange.c, lib/modechange.h,
4397         lib/pathmax.h, lib/quotearg.c, lib/quotearg.h, lib/realloc.c,
4398         lib/regex.c, lib/regex.h, lib/rpmatch.c, lib/savedir.c,
4399         lib/savedir.h, lib/stpcpy.c, lib/strcasecmp.c, lib/strdup.c,
4400         find/Makefile.am, find/Makefile.in, find/find.c, find/pred.c:
4401         Updated to work with current version of gnulib
4403         * import-gnulib.sh: New file.
4405         * config.h.in, configure, configure.in, doc/Makefile.in, import-gnulib.sh:
4406         Updated to work with current version of gnulib
4408         * README-CVS: New file.
4410         * Makefile.am, Makefile.in, README-CVS, aclocal.m4:
4411         Updated to work with current version of gnulib
4413 2001-06-09  Kevin Dalley  <kevin@seti.org>
4415         * intl/plural.c:
4416         Changes the location of bison.simple after running bison on local
4417         machine
4419         * ChangeLog: *** empty log message ***
4421         * Makefile.in, aclocal.m4, config.h.in, configure,
4422         doc/Makefile.in, find/Makefile.in, find/testsuite/Makefile.in,
4423         lib/Makefile.in, lib/posix/Makefile.in, locate/Makefile.in,
4424         locate/testsuite/Makefile.in, m4/Makefile.in, xargs/Makefile.in,
4425         xargs/testsuite/Makefile.in: Updates mostly from gettext-0.10.38
4427         * ABOUT-NLS: * ABOUT-NLS: updated from gettext-0.10.38.
4429         * configure.in: * configure.in: add tr to ALL_LINGUAS.
4431         * intl/config.charset, intl/dcigettext.c, intl/dcngettext.c,
4432         intl/dngettext.c, intl/libgnuintl.h, intl/localcharset.c,
4433         intl/locale.alias, intl/ngettext.c, intl/plural.y,
4434         intl/ref-add.sin, intl/ref-del.sin: updated from gettext-0.10.38
4436         * intl/cat-compat.c, intl/linux-msg.sed, intl/po2tbl.sed.in,
4437         intl/xopen-msg.sed, m4/ChangeLog: *** empty log message ***
4439         * m4/jm-macros.m4:
4440         * jm-macros.m4 (jm_MACROS): remove jm_ICONV, which is replaced by
4441         AM_ICONV, which is imported from gettext-0.10.38.  removed
4442         jm_GLIBC21, which is required in AM_GNU_GETTEXT, which is
4443         imported from gettext-0.10.38.
4445         * po/stamp-cat-id:      * stamp-cat-id: Remove file.
4447         * po/Makefile.in.in:    * Makefile.in.in: Upgrade to gettext-0.10.38.
4449         * po/ChangeLog:         * cat-id-tbl.c: Remove file.
4451         * po/de.po, po/es.po, po/et.po, po/fr.po:
4452         * fr.po, et.po, es.po, de.po: updated translations to
4453         findutils-4.1.7.
4455         * po/tr.po: * tr.po:  New Turkish translation.
4457         * m4/ChangeLog: *** empty log message ***
4459         * intl/dgettext.c, intl/explodename.c, intl/finddomain.c,
4460         intl/gettext.c, intl/gettext.h, intl/gettextP.h,
4461         intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c,
4462         intl/libgettext.h, intl/loadinfo.h, intl/loadmsgcat.c,
4463         intl/localealias.c, intl/plural.c, intl/textdomain.c,
4464         intl/ChangeLog, intl/Makefile.in, intl/VERSION,
4465         intl/bindtextdom.c, intl/dcgettext.c: Updated from gettext-0.10.38
4467         * m4/Makefile.am:
4468         reflects addition of codeset.m4 from gettext-0.10.38, automatically
4469         generated.
4471         * m4/codeset.m4, m4/gettext.m4, m4/glibc21.m4, m4/iconv.m4,
4472                 m4/isc-posix.m4, m4/lcmessage.m4, m4/progtest.m4: *
4473                 progtest.m4, lcmessage.m4, isc-posix.m4, iconv.m4,
4474                 glibc21.m4, gettext.m4, codeset.m4: updated from
4475                 gettext-0.10.38.
4477         * ChangeLog: *** empty log message ***
4479         * THANKS: added "Gerrit P. Haase" <gerrit.haase@t-online.de>
4481         * m4/ChangeLog, locate/testsuite/.cvsignore,
4482         xargs/testsuite/.cvsignore, config.h.in, configure, aclocal.m4,
4483         doc/.cvsignore: *** empty log message ***
4485         * m4/jm-macros.m4:      * jm-macros.m4 (jm_MACROS): add jm_FSTYPENAME
4487         * doc/Makefile.in: *** empty log message ***
4489         * doc/Makefile.am:
4490         * doc/Makefile.am (MOSTLYCLEANFILES): add find.cps, which is
4491         created by dvips.  This should be taken care of by automake, but
4492         the code is commented out.
4494 2001-06-09  Kevin Dalley  <kevin@seti.org>
4496         * ABOUT-NLS: updated from gettext-0.10.38.
4498         * configure.in: add tr to ALL_LINGUAS.
4500         * doc/Makefile.am (MOSTLYCLEANFILES): add find.cps, which is
4501         created by dvips.  This should be taken care of by automake, but
4502         the code is commented out.
4504 2001-06-05  Kevin Dalley  <kevin@seti.org>
4506         * locate/updatedb.sh: replace "whoami" with "id -u" when testing
4507         for root.
4509 2001-06-04  Kevin Dalley  <kevin@seti.org>
4511         * locate/testsuite/Makefile.am (DIST_SUBDIRS): remove second
4512         instance of DIST_SUBDIRS.
4514         * locate/Makefile.am (install-data-hook): changed install target
4515         to install-data-hook, which still installs other files.
4517         * doc/Makefile.am (MOSTLYCLEANFILES): added find.cps, which should
4518         probably be handled by automake.
4520         * doc/mdate-sh: removed file in doc directory.  It now exists only
4521         in top_srcdir, but this changed required a patch to automake.
4523 2001-05-20  Kevin Dalley  <kevin@seti.org>
4525         * Version 4.1.7
4526         
4527         * lib/Makefile.am (EXTRA_DIST): add strcasecmp.c
4529         * find/testsuite/Makefile.am (EXTRA_DIST): new tests:
4530         find.gnu/name-opt.exp find.gnu/perm.exp find.gnu/perm.xo
4531         find.gnu/prune-default-print.exp find.gnu/prune-default-print.xo
4533         * configure.in: update to 4.1.7
4535         * config.sub, config.guess: upgraded to recent versions of
4536         config.sub and config.guess.
4538         * locate/updatedb.sh: Add space to "#! /bin/sh"
4540         * configure.in: Add id to ALL_LINGUAS
4542         * lib/Makefile.am (EXTRA_DIST):  getline.[ch] added
4543         (libfind_a_SOURCES): getline.[ch] removed since getline.c is not
4544         always needed.
4546 2001-05-20  Lionel CONS <lionel.cons@cern.ch>
4548         * find/find.c: Fixed security holes.  1.  There is a race
4549         condition between the lstat() to detect a symbolic link and the
4550         actual chdir().  2.  An attacker can move directories while find
4551         is _inside_ so that chdir(..) goes out of the intended file tree.
4553         * lib/modetype.h: support for Solaris door files is added.
4555         * lib/filemode.c: S_ISDOOR is undef'ed if STAT_MACROS_BROKEN
4557         * find/pred.c (pred_type): -D option (for Solaris door files) is
4558         added.
4560         * find/parser.c (insert_type):  -D option (for Solaris door files)
4561         is added. 
4563         * find/find.1: -D option (for Solaris door files) is documented
4565         * doc/find.texi (Type): -D option (for Solaris door files) is
4566         documented
4568 2001-05-02  Kevin Dalley  <kevin@seti.org>
4570         * configure.in: Change AC_CHECK_MEMBERS to conform to new
4571         autoconf.  Add Danish.
4573 2001-01-20  Kevin Dalley  <kevin@seti.org>
4575         * doc/find.texi (Adding Tests): Place space in "#! /bin/sh".
4577         * find/testsuite/find.gnu/prune-default-print.xo,
4578         find/testsuite/find.gnu/prune-default-print.exp: test for "find
4579         . -prune" which passes after changes.  Also see name-opt.exp.
4581         * find/util.c (get_new_pred):
4582         * find/tree.c (set_new_parent):
4583         * find/parser.c (various parse functions):
4584         * find/find.c (main): 
4585         (default_prints): new function 
4586         * find/defs.h (struct predicate): added no_default_print
4587         side_effects are no separated from no_default_print.  predicates
4588         which cause side effects should not be reordered (optimized).
4589         predicates which cause printing should have printing turned off.
4590         Printing statements also cause side effects.
4592 2000-10-29  Bruno Haible <haible@ilog.fr>
4594         * locate/code.c (main), doc/find.texi: improve handling of
4595         non-ASCII characters used old format.
4597 2000-10-21  Paul Eggert  <eggert@twinsun.com>
4599         If open + fchdir fails, fall back on xgetcwd + chdir.
4600         The old code tested for this at compile-time,
4601         but SunOS 4.1.4 fchdir can fail at run-time.
4603         * find/defs.h (fchdir): Define to -1 if not available.
4604         * find/defs.h (starting_dir, starting_desc):
4605         Always declare.  starting_dir now points to const.
4606         * find/find.c (starting_dir, starting_desc): Likewise.
4607         * find/find.c (starting_dir):
4608         Now "." if starting_desc is nonnegative, for benefit of diagnostics.
4609         (main, process_top_path, process_dir):
4610         If open + fchdir fails, fall back on xgetcwd + chdir.
4611         * find/pred.c (launch): Likewise.
4613 2000-10-20  Kevin Dalley  <kevin@seti.org>
4615         * xargs/xargs.c, locate/updatedb.sh, locate/locate.c (usage),
4616         find/parser.c (parse_help): add bug reporting address to help
4618 2000-10-13  Kevin Dalley  <kevin@seti.org>
4620         * depcomp, lib/depcomp: depcomp moved from lib to .
4622 2000-10-11  Kevin Dalley  <kevind@rahul.net>
4624         * Version 4.1.6
4625         
4626         * locate/testsuite/config/unix.exp: set PRUNEFS to "" for the
4627         testsuite. 
4629 2000-10-10  Bruno Haible <haible@ilog.fr>
4631         * lib/Makefile.am (libfind_a_SOURCES): added yesno.c
4633         * lib/yesno.c, lib/rpmatch.c: new files.
4635         * find/pred.c: use function yesno().
4637 2000-10-10  Kevin Dalley  <kevind@rahul.net>
4638         
4639         * locate/testsuite/Makefile.am: Added missing \ at end of
4640         EXTRA_DIST lines.
4642         * locate/testsuite/locate.gnu/ignore_case3.xo,
4643         locate/testsuite/locate.gnu/ignore_case3.exp,
4644         locate/testsuite/locate.gnu/ignore_case2.exp,
4645         locate/testsuite/locate.gnu/ignore_case1.xo,
4646         locate/testsuite/locate.gnu/ignore_case1.exp: place locatedb
4647         inside tmp directory, add subdir directory under tmp.
4649         * locate/testsuite/config/unix.exp: clean up tmp after test is
4650         finished. 
4652 2000-10-10  Kevin Dalley  <kevind@rahul.net>
4654         * locate/testsuite/config/unix.exp (Repository): 
4656 2000-10-09  Kevin Dalley  <kevind@rahul.net>
4658         * lib/fnmatch.c, lib/fnmatch.h: reverted to older version of
4659         fnmatch which works with Solaris.
4661         * locate/testsuite/config/unix.exp: dejagnu unix.exp
4663         * xargs/testsuite/config/unix.exp: remove temporary file
4665         * xargs/xargs.c: spelling correction
4667         * m4/prereq.m4: updated and changed some macros
4669         * m4/jm-macros.m4: replaced jm_FUNC_FNMATCH with
4670         kd_FUNC_FNMATCH_CASE_REPL 
4672         * m4/timespec.m4, m4/strerror_r.m4, m4/mbstate_t.m4,
4673         m4/largefile.m4, m4/gettext.m4, m4/fnmatchcase.m4, m4/d-type.m4,
4674         m4/d-ino.m4, m4/c-bs-a.m4: new m4 macros.
4676         * m4/Makefile.am: add fnmatchcase.m4 and mbstate_t.m4
4678         * locate/testsuite/locate.gnu/ignore_case3.xo,
4679         locate/testsuite/locate.gnu/ignore_case3.exp,
4680         locate/testsuite/locate.gnu/ignore_case2.xo,
4681         locate/testsuite/locate.gnu/ignore_case2.exp,
4682         locate/testsuite/locate.gnu/ignore_case1.xo,
4683         locate/testsuite/locate.gnu/ignore_case1.exp,
4684         locate/testsuite/config/unix.exp: tests related to "--ignore-case"
4685         option.
4687         * locate/testsuite/locate.gnu: testsuite directory
4689         * locate/testsuite/Makefile.am (Repository): 
4691         * locate/testsuite: add directory for locate testsuite
4693         * po/findutils.pot: updated file
4695         * po/sv.po, po/ru.po, po/pt_BR.po, po/pl.po, po/nl.po, po/ko.po,
4696         po/it.po, po/gl.po, po/fr.po, po/et.po, po/es.po, po/de.po:
4697         updated various po files.
4699         * locate/updatedb.sh: export TMPDIR, which is used by child
4700         processes.
4702         * locate/locate.1, locate/locate.c:  add "--ignore-case" option.
4704         * locate/Makefile.am: add testsuite subdirectory
4706         * find/testsuite/find.gnu/perm.xo,
4707         find/testsuite/find.gnu/perm.exp,
4708         find/testsuite/find.gnu/name-opt.xo,
4709         find/testsuite/find.gnu/name-opt.exp: added test suites
4711         * configure.in: add locate/testsuite/Makefile
4713         * doc/find.info*: removed from repository
4715         * doc/find.texi: add documentation for "-i" option.
4717         * aclocal.m4: removed from repository, as it is generated.
4719         * find/pred.c: fixes problem with "find -perm -0100".
4721         * lib/lstat.c, lib/stat.c: removed from repository.  These files
4722         are generated from lib/xstat.in.
4724 2000-08-24  Kevin Dalley  <kevind@rahul.net>
4726         * doc/find.texi (Invoking xargs): changed @var{-s} to @samp{-s}.
4728 2000-05-13  Kevin Dalley  <kevind@rahul.net>
4730         * find/tree.c (opt_expr): move iname and ipath to the front of the
4731         list of arguments.
4733         * doc/find.texi (Directories): changed wording for "-prune".
4735         * find/parser.c (parse_prune): set side_effects to true, to
4736         prevent prune from being moved in opt_expr.
4738 2000-04-12  Kevin Dalley  <kevind@rahul.net>
4740         * doc/find.texi, doc/permi.texi: fix spellings, add LocalWords.
4742         * lib/Makefile.am: put getline.c back into libfind_a_SOURCES,
4743         since getstr is needed.
4745         * Version 4.1.5
4746         
4747         * po/POTFILES.in: updated list of files, updated po files.
4750 2000-04-02  Paul Eggert  <eggert@twinsun.com>
4752         Add support for large files, and port to Solaris 8 and earlier
4753         versions.
4755         * lib/human.c (getenv): Depend on NEED_GETENV_DECL, not
4756         HAVE_DECL_GETENV.
4758         * lib/strftime.c (my_strftime): Make sure we call the system
4759         strftime, not ourselves, when invoking the underlying strftime.
4760         
4761         * m4/check-decl.m4 (jm_CHECK_DECLS): Remove memchr, nanosleep.
4763         * m4/jm-macros.m4 (jm_MACROS): Don't check for utime.h.  Do not
4764         require jm_BISON, jm_CHECK_TYPE_STRUCT_UTIMBUF, jm_FUNC_LCHOWN,
4765         jm_FUNC_CHOWN, jm_FUNC_NANOSLEEP, jm_FUNC_GROUP_MEMBER,
4766         jm_FUNC_PUTENV, jm_FUNC_GETGROUPS, AM_FUNC_GETLOADAVG,
4767         jm_SYS_PROC_UPTIME, jm_FUNC_FTRUNCATE, jm_FUNC_UTIME.  Do not
4768         replace strcasecmp, dup2, gethostname, getusershell, stime,
4769         strcspn, strpbrk, euidaccess, mkdir, rmdir, rpmatch, strndup,
4770         strverscmp, memchr, memmove.  Do not check for declaration of
4771         lchown.  Remove invocations of AM_FUNC_OBSTACK, AM_FUNC_STRTOD,
4772         POW_LIBM, jm_LANGINFO_CODESET, jm_ICONV.  Remove df tests.
4773         (jm_CHECK_ALL_TYPES): Include <sys/stat.h> when checking for
4774         struct stat.st_blksize.
4776         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set environment variable
4777         in shell rather than using putenv, which isn't portable.
4778         
4779         * COPYING, lib/alloca.c, lib/dirname.c, lib/error.c,
4780         lib/savedir.c, lib/strstr.c, m4/check-decl.m4, m4/d-ino.m4,
4781         m4/d-type.m4, m4/getline.m4, m4/jm-glibc-io.m4, m4/jm-macros.m4,
4782         m4/jm-mktime.m4, m4/ls-mntd-fs.m4, m4/memcmp.m4, m4/prereq.m4,
4783         m4/readdir.m4, m4/regex.m4, m4/strftime.m4, m4/uintmax_t.m4: Sync
4784         to latest version from sh-utils-2.0g.
4786         * config.guess, config.sub, lib/argmatch.c, lib/argmatch.h,
4787         lib/human.c, lib/human.h, lib/memcpy.c, lib/quotearg.c,
4788         lib/quotearg.h, lib/strtoull.c, lib/strtoumax.c,
4789         lib/xstrtoumax.c, m4/c-bs-a.m4, m4/gettext.m4,
4790         m4/largefile.m4, m4/lcmessage.m4, m4/link-follow.m4,
4791         m4/progtest.m4, m4/strerror_r.m4, m4/timespec.m4,
4792         m4/xstrtoumax.m4: New files, taken from sh-utils-2.0g.
4794         * lib/ansi2knr.1, lib/ansi2knr.c, lib/basename.c, lib/getopt.h,
4795         lib/fnmatch.c, lib/fnmatch.h, lib/modechange.c: Sync to latest
4796         unreleased version of GNU tar (between 1.13.17 and 1.13.18).
4798         * lib/basename.h, lib/waitpid.c: New files, taken from same
4799         version of GNU tar.
4800         
4801         * lib/regex.c, lib/regex.h: Sync to GNU grep 2.4.2.
4803         * lib/posix/Makefile.am, lib/posix/regex.h: New files, taken from
4804         GNU grep 2.4.2.
4806         * lib/strftime.c: Sync to textutils 2.0e.
4807         
4808         * acconfig.h, depcomp, lib/strcasecmp.c, m4/check-type.m4,
4809         m4/const.m4, m4/decl.m4, m4/lfs.m4, m4/mktime.m4, m4/perl.m4,
4810         m4/putenv.m4, m4/uptime.m4, m4/utimbuf.m4, m4/utime.m4,
4811         m4/utimes.m4: Remove these files; no longer needed.
4813         * configure.in (AC_CANONICAL_HOST, AC_SYS_LARGEFILE,
4814         jm_AC_TYPE_UINTMAX_T): Add.
4815         (CACHE_IDS, FSTYPE_STATVFS, FSTYPE_USG_STATFS, FSTYPE_AIX_STATFS,
4816         FSTYPE_MNTENT, FSTYPE_STATFS, FSTYPE_GETMNT): Add comment, so that
4817         we don't need acconfig.h.
4818         (AC_CHECK_TYPE): Add ssize_t.
4819         (AC_REPLACE_FUNCS): Add waitpid.
4820         (AC_CHECK_FUNCS): Remove basename.
4821         (AC_FUNC_MKTIME): Remove.
4822         (LIBOBJS): Add no-ops to work around automake 1.4 bug.
4823         (AC_OUTPUT): Add lib/posix/Makefile.
4825         * find/defs.h: Include <config.h>, <sys/types.h>, <sys/stat.h>,
4826         <stdio.h>, <limits.h>, <inttypes.h>.  All includers changed to not
4827         include these files, and to include "defs.h" first (since config.h
4828         must be included first).
4829         (CHAR_BIT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
4830         S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, MOD_WXUSR,
4831         MODE_R, MODE_RW, MODE_RWX, MODE_ALL): New macros.
4832         (enum permissions_type): New enum.
4833         (struct long_val.negative): New member.
4834         (struct long_val.l_val): Now uintmax_t, not unsigned long.
4835         (struct size_val.size): Likewise.
4836         (struct perm_val): New type.
4837         (struct predicate.perm): Now struct perm_val, not unsigned long.
4838         (struct predicate.type): Now mode_t, not unsigned long.
4839         (list_file): New parameters current_time, output_block_size.
4840         All callers changed.
4841         (savedir, basename): Remove decls.
4842         (output_block_size, start_time): New extern vars.
4844         * find/find.c: Include <human.h>, <savedir.h>.
4845         (output_block_size, start_time): New vars.
4846         (main): Initialize them.  No need to check for negative st_size,
4847         since savedir now does it for us.
4849         * find/fstype.c: Include "dirname.h".
4850         (xatoi): Remove.
4851         (filesystem_type_uncached): Use xstrtoumax instead of xatoi.
4852         
4853         * find/parser.c: Include "xstrtol.h".
4854         (get_num_days, get_num, parse_amin, parse_cmin, parse_mmin,
4855         parse_size, parse_used, insert_time, insert_num): Compute using
4856         uintmax_t, not unsigned long.
4857         (parse_amin, parse_cmin, parse_mmin, parse_used, insert_time):
4858         Keep track of whether time was negative before converting it to an
4859         unsigned type.
4860         (parse_daystart): Don't assume that localtime succeeds; e.g. it
4861         can fail with 64-bit time_t and 32-bit tm_year.
4862         (parse_perm, insert_type): Compute using mode_t, not unsigned
4863         long.
4864         (insert_type): Use symbolic constants like MODE_ALL instead of
4865         traditional ones like 07777.  Set new kind member to indicate
4866         permissions type, instead of using unportable magic numbers.
4867         (make_segment): We will use human_readable to convert most numeric
4868         values, so simplify the cases.
4869         (get_num_days): Write in terms of get_num, to avoid duplicated
4870         code.
4871         (insert_time, insert_num): When debugging, convert large values to
4872         uintmax_t and output with %ju.
4873         (get_num): Use xstrtoumax to do the real work.
4875         * find/pred.c: Include "basename.h", "human.h".
4876         (DEV_BSIZE, ST_BLKSIZE, ST_NBLOCKSIZE): New macros, taken from
4877         fileutils.
4878         (ST_NBLOCKS): Replace with fileutils defn.
4879         (MAX): New macro.
4880         (ctime_format): New function.
4881         (pred_fprintf, format_date): Use human_readable to output large
4882         numbers portably.
4883         (pred_fprintf): Use ctime_format to output ctime-style dates.  Use
4884         base_name to compute the base name of a path.  With %m, output the
4885         mode portably using traditional numbers, even if the host uses
4886         some other numbering scheme.
4887         (pred_iname, pred_name): basename -> base_name.
4888         (pred_perm): Use new kind member to deduce permissions type,
4889         instead of relying on magic numbers.
4890         (pred_size): Compute using uintmax_t, not unsigned long.  Avoid
4891         overflow if file size is near the maximum.
4892         (pred_type): Compute using mode_t, not unsigned long.
4893         (launch): Use waitpid, not wait.  Check for EINTR.
4894         (format_date): Don't assume that localtime succeeds.
4896         * find/util.c (basename): Remove; we now use base_name.
4898         * lib/Makefile.am (SUBDIRS): New macro.
4899         (libfind_a_SOURCES): Add argmatch.h, argmatch.c, basename.h,
4900         basename.c, human.c, human.h, quotearg.c, quotearg.h, xstrtoumax.c.
4901         Remove error.h, error.c, getline.c.
4902         (EXTRA_DIST): Add mktime.c, regex.c.
4904         * lib/listfile.c: Include "human.h".
4905         (alloca): Declare, or include appropriate files to declare.
4906         (DEV_BSIZE, ST_NBLKSIZE, ST_NBLOCKS, ST_NBLOCKSIZE): New macros.
4907         (convert_blocks): Remove.
4908         (list_file): New current_time and output_block_size args.
4909         Revamp quite a bit, to handle large numbers correctly
4910         and to match GNU ls behavior more closely.
4912         * m4/Makefile.am (EXTRA_DIST): Add c-bs-a.m4, gettext.m4,
4913         largefile.m4, lcmessage.m4, link-follow.m4, progtest.m4,
4914         strerror_r.m4, xstrtoumax.m4.  Remove check-type.m4, const.m4,
4915         decl.m4, lfs.m4, mktime.m4, perl.m4, putenv.m4, timespec.m4,
4916         uptime.m4, utimbuf.m4, utime.m4, utimes.m4.
4918         * xargs/xargs.c (wait_for_proc): Retry wait if it fails with
4919         errno == EINTR.
4921 2000-04-05  Kevin Dalley  <kevind@rahul.net>
4923         * xargs/Makefile.am:  add ansi2knr
4925         * xargs/xargs.c: add macros PARAMS rather than P_.  Add
4926         prototypes.
4928         * po/POTFILES: new file listing all POFILES.
4930         * m4/gl.po, m4/et.po: new files
4932         * m4/Makefile.am.in:  updated file
4934         * m4: update directory
4936         * locate/Makefile.am: create updatedb from updatedb.sh
4938         * locate/updatedb.sh, locate/updatedb.in: removed file.  Replaced
4939         by updatedb.sh
4941         * locate/frcode.c, locate/code.c, locate/bigram.c: add macros
4942         PARAMS rather than P_.  Add prototypes.
4944         * lib/xstat.in: new file
4946         * lib/Makefile.am: update to latest versions of library files.
4948         * find/testsuite/Makefile.am: add CLEANFILES
4950         * find/util.c: remove definition of basename
4951         
4952         * find/util.c, find/tree.c, find/pred.c, find/parser.c,
4953         find/fstype.c, find/find.c, find/defs.h: add macros PARAMS rather
4954         than P_, for consistency, change to prototypes
4956         * find/Makefile.am: Add prototypes and ansi2knr
4958         * configure.in: add Galition and Estonian languages.
4959         Miscellaneous other fixes.
4960         
4962 2000-03-11  Kevin Dalley  <kevind@rahul.net>
4964         * lib/basename.c: Add file from libit.
4965         * lib/Makefile.am (libfind_a_SOURCES): add basename.c since it is
4966         no longer replaceable.
4968         * find/util.c: Remove definition of basename, which is now in
4969         lib/basename.c (as base_name).
4970         * find/pred.c: Use base_name, not basename.
4971         * find/defs.h: Likewise.
4973         * configure.in : Don't replace basename.  Now we use only
4974         base_name.
4976 2000-02-26  Kevin Dalley  <kevind@rahul.net>
4978         * Version 4.1.4
4979         
4980         * lib/strtoul.c: added to distribution
4981         
4982         * configure.in: added strtoul to AC_REPLACE_FUNCS
4984         * configure.in: added jm_CHECK_ALL_TYPE
4986 2000-02-23  Kevin Dalley  <kevind@rahul.net>
4988         * po/ChangeLog: removed, merged with top-level ChangeLog.
4989         
4990         * po/de.po: new version of German file.
4991         
4992         * po/gl.po, po/et.po: new languages, Estonian and Galician.
4994         * locate/updatedb.sh (PRUNEFS): enclose paths in quotes
4996 2000-02-17  Kevin Dalley  <kevind@rahul.net>
4998         * po/it.po: new version of Italian file.
4999         
5000         * locate/updatedb.sh (prunefs_exp): have sed statement use '*'
5001         rather than the often unsupported '+'.
5003 2000-02-13  Kevin Dalley  <kevind@rahul.net>
5005         * configure.in: removed AC_ARG_PROGRAM, which is already in
5006         AM_INIT_AUTOMAKE. 
5008         * locate/Makefile.am (updatedb), locate/updatedb.sh: add
5009         transforms of find, frcode, bigram, and code back into
5010         updatedb.sh, which were accidentally removed.
5012 2000-02-12  Kevin Dalley  <kevind@rahul.net>
5014         * lib/wait.h: updated address.
5016 2000-01-26  Kevin Dalley  <kevind@rahul.net>
5018         * Version 4.1.3
5020         * acconfig.h: added internationalization.
5022         * intl/*: copied from tar-1.13.17.
5024         * locate/Makefile.am, locate/locate.c, locate/code.c:
5025         internationalized file.
5027         * locate/frcode.c, locate/bigram.c: include headers from ../lib
5028         directory.
5030         * xargs/Makefile.am, xargs/xargs.c: internationalized directory.
5032 2000-01-26  Kevin Dalley  <kevind@rahul.net>
5034         * POTFILES.in: added list of files with translatable strings.
5036         * de.po, es.po, fr.po, it.po, ko.po, nl.po, pl.po, pt_BR.po,
5037         ru.po, sv.po: New, slightly out of date, files imported from the
5038         Translation Project: http://www.iro.umontreal.ca/contrib/po/HTML/,
5039         German, Spanish, French, Italian, Korean, Dutch, Polish, Brazilian
5040         Portuguese.
5043 2000-01-24  Kevin Dalley  <kevind@rahul.net>
5045         * lib/xmalloc.c, lib/regex.c, lib/getopt.c: internationalization
5046         works with current version of gettext.
5048         * lib/getline.h : added declaration of getstr.
5049         * lib/Makefile.am (libfind_a_SOURCES): added getline.[ch] to
5050         standard compilation. Added internationalization.
5051         * find/Makefile.am (INCLUDES): corrected -I options for building
5052         in other directories.
5053         (LDADD): changes for internationalization.
5055         * configure.in (ALL_LINGUAS): added internationalization. 
5056         getline.c is always compiled and linked, because of getstr.
5057         AM_GNU_GETTEXT
5059         * Makefile.am: 
5060         (DISTCLEANFILES): added intl/libintl.h
5061         (AUTOMAKE_OPTIONS): added gnits to AUTOMAKE_OPTIONS
5062         (SUBDIRS): added intl and po
5064         * acconfig.h: added internationalization values
5066         * THANKS: added thanks file for gnits compatibility.
5068 2000-01-22  Kevin Dalley  <kevind@rahul.net>
5070         * added intl directory.
5072         * Added internationalization, only with slightly out of date po
5073         files for many locales.
5075 2000-01-18  Kevin Dalley  <kevind@rahul.net>
5077         * Version 4.1.2
5078         
5079         * locate/Makefile.am: remove creation of updatedb, since it is now
5080         made by configure
5082         * configure.in: updatedb is now created by configure.
5084         * xargs/Makefile.am: added testsuite to xargs directory
5086         * locate/updatedb.in: updatedb is now created by configure
5088         * locate/frcode.c, locate/code.c, locate/bigram.c: change return
5089         from main to int.  Replace getstr with getline, where possible.
5091         * locate/Makefile.am: place frcode, code, bigram in
5092         libexec_PROGRAMS
5094         * lib/xstrdup.c, lib/xmalloc.c, lib/xgetcwd.c, lib/xalloc.h,
5095         lib/strtol.c, lib/strstr.c, lib/strftime.c, lib/strdup.c,
5096         lib/stpcpy.c, lib/stat.c, lib/savedir.h, lib/savedir.c,
5097         lib/regex.h, lib/regex.c, lib/realloc.c, lib/pathmax.h,
5098         lib/modechange.h, lib/modechange.c, lib/mktime.c, lib/memset.c,
5099         lib/memcmp.c, lib/malloc.c, lib/lstat.c, lib/idcache.c,
5100         lib/getopt1.c, lib/getopt.c, lib/getopt.h, lib/getline.c,
5101         lib/getline.h, lib/fnmatch.c, lib/fnmatch.h, lib/filemode.c,
5102         lib/filemode.h, lib/fileblocks.c, lib/error.c, lib/error.h,
5103         lib/dirname.c, lib/alloca.c: updated to newer version of file from
5104         fileutils.
5106         * find/version.c: version number is now automatically generated by
5107         configure.
5109         * find/fstype.c (filesystem_type_uncached): fixes bug described as
5110         follows:  When 'find' looks for a fstype, it parses the /etc/mtab
5111         until it finds the good line. But, if there is, before the good
5112         line, a line whose mountpoint is unreachable, it fails.
5114         * doc/texinfo.tex: updated to newer version
5116         * doc/find.texi: added version.texi, fixed a few documentation bugs.
5118         * configure.in: new m4 features.
5120         * Makefile.am: moved testsuite to below corresponding directories
5121         find and xargs.
5123         * acconfig.h: updated to match new m4 files.
5125         * m4: added m4 directory, largely borrowed from Jim Meyering's
5126         fileutils.
5128 2000-01-17  Kevin Dalley  <kevind@rahul.net>
5130         * doc/find.texi (Multiple Files): placed missing xargs in examples
5132         * find/testsuite/find.gnu/depth.exp: added find tests to test
5133         "-depth" bug.
5135         * doc/find.texi: include version.texi for automatic determination
5136         of version number, update bug report email address to
5137         bug-findutils@gnu.org.
5138         (Combining Primaries With Operators): add indices for " ,", "()",
5139         "-a", "-o", etc.
5141 2000-01-17  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5143         * find/tree.c (opt_expr): Never rearrange the arguments of the
5144         comma operator, since it is not commutative.  Remove useless
5145         assignment.2
5146         
5147 2000-01-17  Jonathan R. Ferro <jferro@corwin.ece.cmu.edu>
5148         
5149         * find/find.c (process_path): fix problem with "-depth" which is
5150         tested in depth.exp test.
5152 1999-08-15  Kevin Dalley  <Kevin Dalley <kevin@seti.org>>
5154         * find/fstype.c (filesystem_type_uncached): a stat failure with
5155         EACCESS will ignore this file system keep on looking.  Patch
5156         suggested by Vincent Danjean <vdanjean@ens-lyon.fr>.
5158 1999-08-15  Mark Kettenis  <kettenis@gnu.org>
5160         * xargs/xargs.c (LONG_MAX): Define if necessary.
5161         (main): If ARG_MAX is -1 (that is sysconf
5162         (_SC_ARG_MAX) returns -1) the system does not impose a limit.  In
5163         that case, use LONG_MAX as the limit.
5164         
5165 1999-08-15  Kevin Dalley  <Kevin Dalley <kevind@rahul.net>
5167         * find/version.c: version string is now set by config.h
5169 1999-08-08  Kevin Dalley  <kevin@seti.org>
5171         * Version 4.1.1
5173         * README-alpha: added alpha README file
5175         * find/defs.h: move lstat declarations into defs.h
5177         * xargs/Makefile.am, testsuite/Makefile.am, locate/Makefile.am,
5178         lib/Makefile.am, find/Makefile.am, doc/Makefile.am, configure.in,
5179         Makefile.am: update for automake-1.4
5181 1999-08-02  Kevin Dalley  <kevind@rahul.net>
5183         * AUTHORS: added file listing AUTHORS
5185         * lib/Makefile.am: modified code for EXTRA sources
5186         
5187 1999-01-30  Kevin Dalley  <kevind@rahul.net>
5189         * added const to declaration of basename, which should satisfy
5190         Linux as well as Hurd (fixes bug #31325).
5191         
5192 1998-12-04  Kevin Dalley  <kevind@rahul.net>
5193         
5194         * lib/nextelem.c: removed declaration of strdup and free, which
5195         meets GNU coding standards and allows compilation on more
5196         platforms.
5197         
5198         * find.texi: corrected explanation of -amin option which described
5199         hours instead of minutes
5200         
5201 1998-09-26  Kevin Dalley  <kevind@rahul.net>
5202         
5203         * lib/getline.c: fix getstr so that it correctly handles long file
5204         paths
5205         
5206 1998-09-20  Kevin Dalley  <kevind@rahul.net>
5207         
5208         * removed more function declarations to meet GNU coding standards
5209         
5210 1998-08-30  Kevin Dalley  <kevind@rahul.net>
5211         
5212         * lib/nextelem.c: removed declaration of strdup and free, which
5213         meets GNU coding standards and allow compilation on sparc
5214         
5215         * corrected explanation of -amin option which described hours
5216         instead of minutes
5217         
5218 1998-02-27  Kevin Dalley  <kevind@rahul.net>
5219         
5220         * locate/locate.c: add --existing option to locate, which only
5221         prints the names of files which still exist
5222         
5223 1998-02-08  Kevin Dalley  <kevind@rahul.net>
5224         
5225         * locate/locate.c: corrected get_short so that it correctly
5226         returns negative numbers.
5227         
5228         * remove declarations of various string functions.  Removing the
5229         declarations almost matches the GNU Coding Standards.
5230         
5231 1997-03-03  Kevin Dalley  <kevind@rahul.net>
5232         
5233         * xargs/xargs.c: xargs fixed to prevent occasional core dumping.
5234         
5235 1997-01-11  Kevin Dalley  <kevind@rahul.net>
5236         
5237         * locate/updatedb.sh: add --localuser option to updatedb, which
5238         allows find to be run as nobody, while allowing database file to
5239         be created as root, change suggested by
5240         <Bernd_Eckenfels@Wittumstrasse13.76646Bruchsal.de>
5241         
5242 1996-12-28  Kevin Dalley  <kevind@rahul.net>
5243         * added PRUNEFS as variable in updatedb and --prunefs as option to
5244         updatedb
5246 1996-05-27  Kevin Dalley  <kevind@rahul.net>
5247         
5248         * updatedb.sh: when NETPATHS is used, only su to NETUSER if whoami
5249         is root
5250 1996-04-27  Kevin Dalley  <kevind@rahul.net>
5252         * lib/getline.c (getstr): verify that nchars_avail is *really*
5253         greater than 0; set *n to a large enough number, stops some core
5254         dumping
5256 Thu Nov  3 09:23:33 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
5258         * Version 4.1.
5260         * locate/Makefile.am: Move updatedb from LIBSCRIPTS to SCRIPTS.
5262         * Makefile.am (distname): Change distribution name from find to
5263           findutils.
5265         * testsuite/config/unix.exp: Don't abuse xfail; simulate it correctly.
5267         * locate/Makefile.am (CLEANFILES): Fix typo.
5269 Wed Nov  2 15:11:52 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
5271         * The big 4 0.
5273         * lib/listfile.c find/defs.h (list_file): Take a stream arg.
5274         * find/pred.c (pred_ls): pass it.
5275         * find/parser.c pred.c defs.h (parse_fls, pred_fls): New functions.
5277 Tue Oct 25 16:09:04 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
5279         * find/pred.c (pred_fprintf): Flush output after \c.  From Chapman
5280         Flack.
5282         * find/parser.c (insert_fprintf): Warn about unrecognized \ and %
5283         sequences.
5285 Tue Oct 18 00:03:10 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
5287         * find/defs.h parser.c pred.c tree.c util.c: Globally change
5288         "victim" to "primary".
5290         * find/parser.c (insert_fprintf): For 'c' format, don't lose the
5291         need_stat information.  From Chapman Flack.
5293         * doc/find.texi perm.texi: New files.
5294         * configure.in: Configure the doc directory.
5296         * find/pred.c (pred_regex): Check that the regex matched the whole
5297         file name.
5299 Wed Oct 12 17:13:47 1994  David J. MacKenzie  (djm@duality.gnu.ai.mit.edu)
5301         * find/find.c (main): Tell what the invalid arg is.
5302         From Kaveh Ghazi.
5304 Fri Oct  7 12:33:24 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5306         * find/parser.c: Add -mount as an alias for -xdev.
5307         From Klaus.Steinberger@physik.uni-muenchen.de (Klaus Steinberger).
5309         * lib/modechange.c: Make umask_value unsigned short.
5311         * xargs/xargs.c: Use symbolic constants in longopts.
5312         From Chapman Flack.
5314 Wed Oct  5 11:23:09 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5316         * xargs/xargs.c (main, read_line, read_string, do_exec): Pass 
5317           along the lengths of the args.
5318           (main): Calculate length of replace_pat.
5319           (push_arg, do_insert): Use those lengths instead of calculating
5320           them. 
5322 Tue Oct  4 10:02:05 1994  David MacKenzie  <djm@churchy.gnu.ai.mit.edu>
5324         * locate/updatedb.sh Makefile.in: Add substitutions to get
5325           the transformed program names.
5327         * xargs/xargs.c: Put back the global variables for now.
5328         Rename some variables.  Increase default args_per_exec.
5329         Use boolean where applicable.
5330         (main): Reduce default arg_max by 2048 for POSIX.2.
5331         (read_string): Don't check EOF string.
5332         (read_line, read_string): Take initial args size into account.
5334 Sat Oct  1 17:43:13 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5336         * find/pred.c (launch): Use pid_t.
5338         * xargs/xargs.c (EOF_STR): Define and use.
5339         [__STDC__]: Declare xrealloc and xmalloc using void *.
5340         * find/defs.h: Likewise.
5342         * find/defs.h: Only declare stpcpy if !HAVE_STPCPY.
5344         * xargs/xargs.c: Replace most global variables with structure
5345           pointers passed as arguments.  Use pid_t.
5346         * lib/wait.h: Include sys/wait.h if HAVE_SYS_WAIT_H.
5347         * configure.in: Call AC_TYPE_MODE_T and AC_HEADER_SYS_WAIT.
5349         * xargs/xargs.c: Improve paging performance and memory
5350           fragmentation by building command arguments in a pre-allocated
5351           buffer and re-implementing the child pid list as an expandable
5352           array.  From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).
5354 Thu Sep 29 11:38:07 1994  David J. MacKenzie  (djm@geech.gnu.ai.mit.edu)
5356         * xargs/xargs.c [__STDC__]: Prototype declarations.
5358 Wed Sep 28 11:25:53 1994  David J. MacKenzie  (djm@duality.gnu.ai.mit.edu)
5360         * find/fstype.c [AFS, __STDC__]: Fix definition of _VICEIOCTL.
5362 Tue Sep 27 08:14:27 1994  David MacKenzie  <djm@churchy.gnu.ai.mit.edu>
5364         * find/fstype.c (fstype_to_string): Add more cases.  Use
5365           INITMOUNTNAMES if defined.
5366         * find/defs.h: Change boolean typedef from char to int.
5367         * configure.in: Check for mktime.
5369 Tue Sep 27 01:20:28 1994  Kaveh R. Ghazi  (ghazi@noc.rutgers.edu)
5371         * configure.in: Add AC_HEADER_STAT.
5372         * lib/listfile.c, lib/modetype.h: Add STAT_MACROS_BROKEN.
5374         * find/pred.c: Move the inclusion of defs.h ahead of the first
5375           test of _POSIX_VERSION.
5377         * lib/xgetcwd.c: Remove _POSIX_VERSION, rely only on HAVE_GETCWD.
5379 Mon Sep 26 16:43:01 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5381         * configure.in: Add AC_CONFIG_HEADER.
5382         * find/*.c locate/*.c xargs/*.c: Include config.h.
5383         * locate/updatedb.sh: Add --version; --old -> --old-format.
5385 Sun Sep 25 23:43:37 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5387         * find/* [__STDC__]: Prototype declarations.
5389         * locate/updatedb.sh: Account for renaming code and frcode.
5391         * find/find.c (process_path): Store dev and ino of directories in
5392           current branch to avoid symlink loops.  From DJ Delorie
5393           <dj@ctron.com>.
5394           (process_dir): If following symlinks, don't cd to ..; instead,
5395           cd to the starting directory and then to the parent directory.
5396           (main) [HAVE_FCHDIR]: Save the dev, ino of the starting directory.
5397           (process_top_path) [HAVE_FCHDIR]: Use it.
5398         * find/pred.c (launch) [HAVE_FCHDIR]: Likewise.
5399         * defs.h [HAVE_FCHDIR]: Declare starting_desc instead of starting_dir.
5400         * configure.in: Check for dev_t, ino_t, fchdir, fcntl.h.
5402 Fri Sep 23 11:55:38 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5404         * lib/listfile.c: Change #ifdef S_IFLNK to #ifdef S_ISLNK.
5405         From Andreas Luik <luik@isa.de>.
5407 Thu Sep 22 11:42:40 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5409         * locate/locate.c (last_literal_end): Dynamically allocate enough
5410           memory for the subpattern.
5412 Wed Sep 21 06:12:56 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5414         * locate/locate.c (locate): Warn if database is >8 days old.
5415         From Ian Lance Taylor.
5417         * xargs/xargs.c (do_exec), find/pred.c (launch): Set SIGCHLD to
5418           default.  From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).
5419         * find/find.c pred.c util.c lib/listfile.c: Remove fflush(stdout)
5420           calls before error.  error does it, and doesn't trash errno.
5421           From tsi@gpu.srv.ualberta.ca (Marc Aurele La France).
5423         * find/fstype.c (filesystem_type_uncached): Don't trust mtab dev
5424           number on HPUX.  From Andreas Luik <luik@isa.de>.
5425           (filesystem_type_uncached): Don't cache unknown file system
5426           types.  From casper@fwi.uva.nl (Casper Dik).
5428         * locate/updatedb.sh: Collect results in temp file and rename it
5429           atomically.  From Andreas Luik <luik@isa.de>.
5431         * xargs/xargs.c (parse_num): Print a long using %ld.  From Jim
5432           Meyering.
5434         * find/defs.h find.c parser.c pred.c util.c, lib/nextelem.c:
5435           Emulate strchr and strrchr with index and rindex, not vice versa.
5437         Remove man directory; move man pages to the directories of the
5438         programs they document.
5440         * locate/frcode.c: Renamed from code.c.
5441         * locate/frcode.c (put_short): Renamed from puthalfword.
5442         * locate/locate.c (get_short): Renamed from gethalfword.
5443         (last_literal_end): Renamed from patprep.
5444         (locate): Recognize old-format databases too.
5445         * locate/locatedb.h: Add defines for old-format databases.
5446         * locate/bigram.c locate/code.c: Put back programs to create
5447         old-format databases.
5448         * locate/updatedb.sh: Take --old option to use them.
5450 Tue Sep 20 15:41:11 1994  David MacKenzie  <djm@geech.gnu.ai.mit.edu>
5452         * configure.in: Update for Autoconf v2.
5453         * find/pred.c lib/savedir.c: Use new symbols for dir header.
5454         * locate/updatedb.sh: Add --help option.
5456 Sun Feb 13 11:21:58 1994  Jim Meyering  (meyering@comco.com)
5458         * man/Makefile.in [man1ext, man5ext]: Set man5ext (not man1ext) to 5.
5460 Sun Aug  1 22:30:55 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
5462         * bigram.c: File removed.
5463         * getline.c, memcmp.c, locatedb.h, updatedb.1, locatedb.5: New files.
5464         * updatedb.sh: Take command line options.
5465         Don't do bigram compression.
5466         * code.c, locate.c: Don't do bigram compression.
5467         Write and read counts in network byte order.
5468         Handle arbitrarily long paths.
5469         Use a magic number at the start of the databases.
5471 Thu Jul 29 20:44:53 1993  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
5473         * Makefile.in (config.status): Run config.status --recheck, not
5474         configure, to get the right args passed.
5476 Thu Jul 22 12:53:12 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
5478         * listfile.c (list_file): Print inode as a long.
5480 Wed Jul 14 14:14:45 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
5482         * fstype.c [STDC_HEADERS]: Include stdlib.h.
5484         * Move unistd.h include from parser.c and pred.c to defs.h.
5486 Wed Jun 30 14:14:47 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
5488         * updatedb.sh: Construct PRUNEREGEX from PRUNEPATHS with sed.
5489         Prune /afs.  Change NFSUSER to NETUSER and NFSPATHS to NETPATHS.
5491 Tue Jun 29 12:19:58 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
5493         * pred.c (pred_fprintf): Abort in switch if `c' is not A, C, or T.
5495 Mon Jun 28 00:18:52 1993  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
5497         * fstype.c (in_afs) [AFS]: New function, derived from code by
5498         Sanjay Ramamurthy <ramams@rpi.edu>.
5499         (filesystem_type_uncached) [AFS]: Call it if the fs type is
5500         otherwise unknown.
5502         * parser.c (parse_size): Recognize b and w suffixes for dd
5503         compatibility. 
5505         * code.c (puthalfword): New function.
5506         (main): Call it.
5507         * locate.c (gethalfword): New function.
5508         (locate): Call it.
5509         From ifado!wb@germany.eu.net (Wilhelm B. Kloke).
5511         * listfile.c: Include pathmax.h.
5512         (get_link_name): Always allocate PATH_MAX + 1 bytes for
5513         readlink buffers.
5514         * pred.c (pred_fprintf, insert_lname): Call get_link_name.
5516         * fstype.c (filesystem_type, filesystem_type_uncached),
5517         listfile.c (list_file): Take an arg for the path to access.
5518         * pred.c (pred_ls, pred_fstype, pred_fprintf): Pass it.
5520         * find.c (process_dir): Renamed from scan_directory.
5522         Changes from jrs@world.std.com (Rick Sladkey) to chdir into
5523         subdirectories instead of using string concatenation, for speed:
5524         * find.c (process_top_path): New function.
5525         (main): Call it, and xgetcwd.
5526         (process_path, scan_directory): Take new arg, the pathname
5527         relative to ".".  Use it and pass it on.
5528         * pred.c (pred_and, pred_comma, pred_negate, pred_or,
5529         pred_xtype, pred_fprintf, pred_empty, insert_lname):
5530         access rel_pathname instead of pathname.
5531         (launch): chdir to starting_dir.
5532         * defs.h: Declare rel_pathname and starting_dir.
5533         * find.c: Define them.
5535         * xgetcwd.c: New file.
5537         * updatedb.sh: Recognize -fstype NFS as well as nfs.
5538         * locate.c (patprep): Skip trailing character classes correctly.
5539         From luik@pharao.stgt.sub.org (Andreas Luik).
5541         * parser.c (parse_group): Make gid a gid_t, not short or int.
5542         (parse_nogroup): Cast gid to unsigned when using it as an array index.
5543         (parse_user, parse_nouser): Similar changes for uid.
5544         * defs.h: Use uid_t and gid_t.
5546         * parser.c (parse_help): New function.
5547         (parse_table):  Add --version, -help, and --help options.
5548         Rename struct parser_table_t to struct parser_table.
5549         (parse_version): Exit after printing message, on
5550         stdout not stderr.
5552         * xargs.c, locate.c (main, usage): Add --version and --help
5553         options.
5555 Wed Mar 31 22:39:57 1993  Jim Meyering  (meyering@comco.com)
5557         * parser.c: Define isascii macro to be 1 also if STDC_HEADERS.
5558         * xargs.c: Ditto.
5560 Wed Mar 31 16:04:07 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
5562         * pred.c (pred_fprintf): If curdepth is 0, don't nuke
5563         segment->text; nuke cp.
5565 Mon Mar 29 15:57:20 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
5567         * Version 3.8.
5569 Fri Mar 26 16:36:59 1993  David J. MacKenzie  (djm@hal.gnu.ai.mit.edu)
5571         * pred.c (pred_ilname, pred_iname, pred_ipath): New functions.
5572         (pred_table): Add them.
5573         (insert_lname): New function.
5574         (pred_lname): Call it.
5575         * parser.c (parse_ilname, parse_iname, parse_ipath,
5576         parse_iregex): New functions.
5577         (parse_table): Add them.
5578         (insert_regex): New function.
5579         (parse_regex): Call it.
5581         * fstype.c (filesystem_type): Cache previous result.
5582         (filesystem_type_uncached): New function.
5583         pred.c (pred_fstype, pred_fprintf): Adjust callers to not cache.
5585         * parser.c: Don't define const.
5587         * fstype.c [FSTYPE_STATFS] (fstype_to_string): #ifdef
5588         MOUNT_PC for 386bsd.
5590 Thu Mar 25 18:32:24 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
5592         * parser.c (parse_regex): If ignore_case, set up a translate
5593         table for the regex.
5595         * defs.h: Include string.h or strings.h.
5596         * find.c fstype.c parser.c pred.c util.c: Don't.
5598         * nextelem.c [index]: Don't redefine.
5600 Wed Mar 24 17:47:10 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
5602         * xargs.c (wait_for_proc): Exit with a nonrunnable command's exit
5603         status, not the wait status value.  From
5604         Andreas Schwab <schwab@lamothe.informatik.uni-dortmund.de>.
5606         * parser.c (make_segment, insert_fprintf), pred.c
5607         (pred_fprintf): Add '%F' to print filesystem type.
5609         * parser.c (parse_fprintf): Check if second arg is missing.
5611 Tue Mar 23 13:18:08 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
5613         * pred.c (pred_fprintf): For %P, don't move past an assumed
5614         slash if the ARGV element ends with one, because in that case
5615         we didn't add one.
5617         * parser.c (parse_printf): Check for missing arg.
5618         From smj@cats.com (Steve James).
5620         * parser.c: Add #ifdef around atol decl for Linux.
5622 Fri Dec 11 08:17:07 1992  Jim Meyering  (meyering@comco.com)
5624         * defs.h: Remove dcl of process_path.
5625         * find.c: Put dcl of p
5627         * pred.c (pred_fprintf): Don't print "\n" unless it's in the
5628         format string.
5630 Mon Oct 21 22:30:35 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
5632         * defs.h, parser.c, pred.c: Rename some types that conflict
5633         with reserved POSIX.1 namespace (ended in _t).
5635         
5636         
5637 Thu Oct 17 22:39:06 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
5639         * xargs.c: Don't determine memory.h based on POSIX, which
5640         doesn't mention it.
5642 Sat Oct  5 16:11:05 1991  Jim Meyering (meyering at churchy.gnu.ai.mit.edu)
5644         * parser.c (parse_perm): Parse new `-perm +mode' notation.
5645         * pred.c (pred_perm): Interpret same.
5647 Fri Sep 13 14:58:27 1991  David J. MacKenzie  (djm at churchy.gnu.ai.mit.edu)
5649         * xargs.c [POSIX]: Always use sysconf to get ARG_MAX.
5651 Thu Sep  5 23:57:06 1991  David J. MacKenzie  (djm at apple-gunkies)
5653         * bigram.c, code.c (main): Make path_max int, not unsigned.
5654         * locate.c (main): Check for pathconf failure.
5656 Thu Sep  5 11:54:44 1991 Jim Meyering (meyering at churchy.gnu.ai.mit.edu)
5658         * parser.c (insert_fprintf): Add `\\' escape and fixed `%%'
5659         interpretation.
5660         * pred.c (pred_fprintf): fixed off-by-one indexing problem
5661         when handling [gGuU] printf formats.
5663 Wed Aug 28 20:53:57 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
5665         * Version 3.2.
5667 Mon Aug 26 18:57:32 1991  David J. MacKenzie  (djm at pogo.gnu.ai.mit.edu)
5669         * bigram.c, code.c: Fix handling of PATH_MAX.
5670         Check for anomalous input line lengths.
5671         From Bruce Evans.
5673 Fri Aug 23 11:00:18 1991  David J. MacKenzie  (djm at apple-gunkies)
5675         * pred.c (pred_fprintf): Round block number up to get K.
5677 Thu Aug 22 10:46:30 1991  David J. MacKenzie  (djm at apple-gunkies)
5679         * pred.c (pred_fprintf, pred_lname) [_AIX]: Allocate PATH_MAX
5680         byte for link object since st_size is wrong.
5682         * listfile.c (list_file): Don't convert blocks to kilobytes if
5683         env. var POSIX_ME_HARDER is defined.
5685         * fstype.c [FS_AIX_STATFS]: New case.
5687         * configure: Make sure the sys/mount.h is the 4.4BSD version
5688         with grep instead of just testing whether it exists.
5690         * listfile.c (list_file): Add 1 to number of 512-byte blocks
5691         before dividing to get 1K blocks (so we round up, not down).
5693 Wed Aug 21 13:02:46 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
5695         * Version 3.1.
5697         * parser.c (parse_fprintf), pred.c (pred_fprintf): Add %k
5698         conversion to print 1K blocks.
5700         * listfile.c: Print counts of 1K blocks, for consistency with
5701         new fileutils release.  Bad timing, there.
5703         * Version 3.0.
5705         * pred.c [VOID_CLOSEDIR]: Fake a return value for closedir,
5706         which returns void on some systems, like Sequents.
5707         * configure: Check sys/dir.h for 'void closedir'.
5709 Thu Aug 15 16:07:46 1991  David J. MacKenzie  (djm at frob)
5711         * modetype.h: Define POSIX.1 stat stuff if missing.
5712         * pred.c, parser.c, find.c, fstype.c: Don't define it.
5713         * updatedb.sh: Use a variable substitution method like configure's.
5714         * Makefile.in: Add datadir variable to separate programs from
5715         data file.
5717         * parser.c, pred.c: Rename -fulldays to -daystart.
5719         * defs.h, find.c, parser.c, pred.c: Add many new predicates
5720         from Jay Plett (jay@princeton.edu).
5722 Wed Aug 14 14:37:06 1991  David J. MacKenzie  (djm at bleen)
5724         * parser.c (parse_size), pred.c (pred_size), defs.h (struct
5725         size_t): Allow `k' to follow number to measure size in Kbytes.
5726         * parser.c (parse_size, get_num, insert_num), defs.h (struct
5727         size_t): Use enum comparison_type instead of short.
5729 Fri Aug  9 00:49:32 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
5731         * xargs.c (read_line): Use isblank, to support POSIX locales.
5733         * fstype [FS_STATVFS]: New code for SVR4, from slootman@dri.nl
5734         (Paul Slootman).
5735         * configure: Figure out when to use it.
5737         * configure: Check for st_blocks in struct stat.
5738         * listfile.c (ST_NBLOCKS): New macro.
5739         (list_file): Print file's block count.
5740         Use S_ISLNK instead of S_IFLNK.
5741         * fileblocks.c: New file, from fileutils.
5743 Thu Aug  8 17:20:19 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
5745         * parser.c, pred.c [CACHE_IDS]: Optional code to turn uid and
5746         gid lookups into table lookups.
5748 Wed Aug  7 00:22:29 1991  David J. MacKenzie  (djm at wheat-chex)
5750         * configure, Makefile.in's: Support +srcdir option via VPATH.
5751         Clean up clean targets.
5753 Sat Jul 20 01:11:51 1991  David J. MacKenzie  (djm at apple-gunkies)
5755         * configure: Filter /etc and /usr/etc from path.
5757         * xargs.c (wait_for_proc): Fix handling of child exit status.
5758         (main): Exit with a nonzero status if any child did.
5760         * pred.c (launch): Flush stdout and stderr before forking.
5762         * fstype.c (filesystem_type) [FS_MNTENT]: Skip entries of
5763         type "ignore".
5765 Fri Jul 19 22:53:42 1991  David J. MacKenzie  (djm at bleen)
5767         * pred.c, locate.c: Use fnmatch instead of glob_match.
5768         * fnmatch.c, fnmatch.h: New files.
5770         * Many files: Use string.h if STDC_HEADERS, as well as if USG.
5772         * locate.c, code.c, bigram.c: Possibly use pathconf to get
5773         PATH_MAX.  Use malloc to allocate path arrays.
5775         * xargs.c: Possibly use sysconf to get ARG_MAX.
5776         (env_size): Make definition unconditional.
5777         (main): Do arg_max adjustment that can't be done with
5778         preprocessor now that ARG_MAX might be a function call.
5779         (do_exec): Exit with status 126 or 127 after failed exec, for
5780         POSIX.2 draft 11.1.
5782         * xargs.c, pred.c, listfile.c: Use POSIX, not UNISTD_MISSING.
5783         * wait.h: Use POSIX, not WAIT_MACROS_MISSING.
5785         * COPYING: Use version 2.  Update all files.
5787         * Replace Makefile and lib/Makefile with Makefile.in,
5788         lib/Makefile.in and configure.  Update README.
5790 Fri Apr  5 12:49:09 1991  David J. MacKenzie  (djm at apple-gunkies)
5792         * Version 2.2.
5794 Fri Mar 15 20:44:45 1991  David J. MacKenzie  (djm at geech.ai.mit.edu)
5796         * xargs.c (main): Always run the command if some args are left over.
5797         Rename some variables.
5799 Fri Jan 18 03:35:57 1991  David J. MacKenzie  (djm at geech.ai.mit.edu)
5801         * bigram.c, code.c, locate.c: Use LIMITS_MISSING, not
5802         _POSIX_SOURCE, to decide whether to include limits.h.
5804         * parser.c, pred.c, listfile.c: Use POSIX, not _POSIX_SOURCE,
5805         to decide whether to declare getpwuid and getgrgid.
5807         * xargs.c: Use POSIX, not _POSIX_SOURCE, to determine whether
5808         to include memory.h.
5810 Sat Jan 12 04:12:34 1991  David J. MacKenzie  (djm at wookumz.ai.mit.edu)
5812         * defs.h, find.c, parser.c, pred.c: Remove -permmask option.
5814 Thu Jan 10 04:32:52 1991  David J. MacKenzie  (djm at albert.ai.mit.edu)
5816         * wait.h: Include sys/types.h to get pid_t.
5818         * xargs.c [USG && !STDC_HEADERS]: Only include memory.h if not
5819         _POSIX_SOURCE.
5821 Tue Jan  1 23:53:32 1991  David J. MacKenzie  (djm at albert.ai.mit.edu)
5823         * Version 2.1.
5825 Wed Dec 26 03:25:51 1990  David J. MacKenzie  (djm at apple-gunkies)
5827         * locate.c, bigram.c, code.c: Attempt to get max. path length
5828         on more kinds of systems, incl. POSIX.
5830         * pred.c, listfile.c, xargs.c: Get some decls from unistd.h,
5831         if available. 
5833         * find.c, defs.h: Make `cur_day_start' a time_t, not long.
5835 Fri Dec 21 01:49:12 1990  David J. MacKenzie  (djm at egypt)
5837         * defs.h, parser.c: Remove unused field from `struct exec_t'.
5839         * xargs.c: Add +no-run-if-empty option to cause the command to
5840         not be run if the input is empty.
5842         * defs.h (struct exec_t): Change the array of offsets into an
5843         array of `struct path_arg'.
5844         * parser.c (insert_exec_ok): Fill in new fields, to allow "{}"
5845         to be substituted (multiple times) anywhere in an arg to -exec
5846         or -ok.
5847         * pred.c (pred_exec): Add code to substitute "{}" within args.
5848         (pred_ok): After prompting, just run pred_exec.
5850 Thu Dec 20 02:32:09 1990  David J. MacKenzie  (djm at egypt)
5852         * fstype.c (filesystem_type) [FS_MNTENT]: Allow for optional
5853         "0x" at front of "dev=" mount option, which amd puts there but
5854         Sun automounter doesn't.
5856 Sat Dec 15 19:01:12 1990  David J. MacKenzie  (djm at egypt)
5858         * find.c (main), util.c (usage): Make directory args optional,
5859         defaulting to ".".
5861 Sat Dec 15 18:36:29 1990  David J. MacKenzie  (djm at apple-gunkies)
5863         * listfile.c: Define major and minor if not defined (as in POSIX).
5865 Mon Dec  3 01:04:35 1990  David J. MacKenzie  (djm at alborz)
5867         * find.c, fstype.c, parser.c, pred.c, util.c: Flush stdout before
5868         writing to stderr, in case they have been redirected to the
5869         same file descriptor.
5871         * pred.c (launch): Use POSIX wait macros from wait.h.
5873         * xargs.c (print_xargs): Read from tty_stream, not stdin.
5875 Tue Nov 20 16:48:24 1990  David J. MacKenzie  (djm at apple-gunkies)
5877         * Version 2.0.
5879         * fstype.c [FS_USG_STATFS]: New code.
5880         [FS_STATFS]: For symlinks, statfs the directory the link is in
5881         instead of the link.
5882         * Various files: Conditionalize some declarations on
5883         STDC_HEADERS or _POSIX_SOURCE.
5885 Fri Nov 16 12:24:43 1990  David J. MacKenzie  (djm at egypt)
5887         * modetype.h: New file.
5888         parser.c, pred.c: Use it.
5890 Thu Nov 15 18:05:54 1990  David J. MacKenzie  (djm at apple-gunkies)
5892         * xmalloc.c: New file from fileutils.
5894         * fstype.c (fstype_to_string): Add case for MFS.
5895         (filesystem_type): Take a pathname as a second arg.
5896         [FS_STATFS] return "unknown" instead of exiting if statfs
5897         fails because of ENOENT.
5898         * pred.c (pred_fstype): Pass the pathname.  Set current_dev.
5899         * find.c (process_path): Make root_dev local again.
5901 Mon Nov 12 02:54:00 1990  David J. MacKenzie  (djm at apple-gunkies)
5903         * pred.c (pred_fstype): Free old fs type.
5905         * fstype.c, pred.c (pred_fstype), parser.c (parse_fstype): 
5906         Reread the file system type info. every time a filesystem
5907         mount point is crossed, to allow for automounting.
5909         * xstrdup.c: New file from fileutils.
5911         * find.c (process_path): Rename root_dev to current_dev and
5912         make it global, for -fstype.
5914         * wait.h: New file taken from xargs.c.
5916         * xargs.c: Make limits.h vs. sys/param.h conditional on
5917         LIMITS_MISSING instead of USG, to accomodate SVR2.
5919 Thu Nov  8 11:52:22 1990  David J. MacKenzie  (djm at apple-gunkies)
5921         * parser.c, pred.c, listfile.c: If not _POSIX_SOURCE, declare
5922         getpwuid and getgrgid.  Use them.
5924         * listfile.c: If not _POSIX_SOURCE, define S_ISDIR and
5925         S_ISBLK.  Use them. 
5927         * find.c: Use S_ISDIR instead of S_IFDIR, and define if not
5928         _POSIX_SOURCE. 
5930         * Makefile: Define AR and RANLIB and pass to child makes.
5931         lib/Makefile: Use them.
5933         * xargs.c (WIFSIGNALED): Redefine so it works.
5935 Mon Nov  5 00:02:01 1990  David J. MacKenzie  (djm at apple-gunkies)
5937         * find.c (process_path): For -xdev, process filesystem
5938         mountpoints (but don't descend them), instead of skipping them
5939         entirely. 
5941         * find.c, parser.c, defs.h: Add -follow predicate.
5943         * xargs.c: Change ifdefs to support STDC POSIX systems.
5945 Sat Nov  3 20:18:05 1990  David J. MacKenzie  (djm at apple-gunkies)
5947         * xargs.c (do_exec): Child process exits with status 255, not
5948         127, if command can't be run.
5950 Fri Nov  2 02:11:42 1990  David J. MacKenzie  (djm at apple-gunkies)
5952         * xargs.c: Exit with status 127 if running commmand fails, as
5953         required by POSIX.
5955         * fstype.c: Support -fstype for Ultrix (-DFS_GETMNT).
5956         Sun/BSD code is now -DFS_MNTENT.
5958 Thu Nov  1 13:06:01 1990  David J. MacKenzie  (djm at egypt)
5960         * Reorganize into subdirectories and add xargs.  Rewrite Makefiles.
5962         * find.c (process_path, main): Allow a maxdepth of 0, meaning
5963         only process command line args.
5965         * parser.c, pred.c: Add -print0 predicate.
5967         * xargs.c: Add -0 option and long options.  Move standard
5968         library functions into separate files.  Use error instead of
5969         fatal and fprintf/perror.  Use POSIX macros for examining exit
5970         status from wait.
5971         (read_string): New function.
5973 Fri Sep 21 10:21:09 1990  David J. MacKenzie  (djm at apple-gunkies)
5975         * find.c (process_path): Take DEPTH as an arg instead of ROOT,
5976         and change callers.
5978 Thu Sep 20 23:58:47 1990  David J. MacKenzie  (djm at apple-gunkies)
5980         * parser.c (parse_maxdepth): New function.
5981         * find.c (process_path): If -maxdepth was given, don't go
5982         more than that many levels deep.
5983         * defs.h: Declare maxdepth.
5985 Wed Sep 12 02:12:31 1990  David J. MacKenzie  (djm at apple-gunkies)
5987         * parser.c: Add -not as synonym for !.
5989 Sun Aug 26 06:16:08 1990  Jim Kingdon  (kingdon at pogo.ai.mit.edu)
5991         * Makefile (TAGS): New target.
5993 Sun Aug 12 00:32:01 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
5995         * xargs.c (main): Tell getopt to not permute.
5997 Sat Aug  4 21:43:45 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)
5999         * parser.c (parse_perm), pred.c (pred_perm): Always compare
6000         bits 07777.
6002         * locate.c, Makefile: Rename 'fastfind' program to 'locate',
6003         following comment in POSIX.2 draft 10 rationale for find.
6005 Wed Jul 25 18:45:03 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6007         * listfile.c (getuser, getgroup): Make uid and gid unsigned
6008         short, not int.
6010 Mon Jul 16 13:40:13 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6012         * defs.h: Don't declare fprintf and printf, in case they have
6013         prototypes in stdio.h (important for functions that use stdarg).
6015 Sun Jul 15 23:39:39 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6017         * parser.c (parse_and): New function, for compatibility.
6019 Wed Jul  4 00:17:57 1990  David J. MacKenzie  (djm at apple-gunkies)
6021         * find.c (main): Only enclose expressions that produce no side
6022         effects within `( ... )'.
6024 Tue Jul  3 01:59:39 1990  David J. MacKenzie  (djm at apple-gunkies)
6026         * parser.c (strspn): Stop when end of string reached.
6028         * Version 1.2.
6030         * Move version number from Makefile to new file version.c.
6031         * parser.c: Recognize new -version predicate.
6033         * find.c (main): If no predicates that produce output are
6034         given, default to -print if the entire expression is true, not
6035         just the last part of an alternation.
6036         * Print the names of predicates with invalid arguments.
6038 Mon Jul  2 23:48:17 1990  David J. MacKenzie  (djm at apple-gunkies)
6040         * pred.c: Don't check for invalid comparison types in numeric
6041         predicate functions.
6043 Thu Jun 28 00:34:57 1990  David J. MacKenzie  (djm at apple-gunkies)
6045         * parser.c (parse_regex): Set fastmap and translate before
6046         compiling regex.
6048 Mon Jun 25 18:08:59 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6050         * fastfind.c (fastfind): Initialize count to 0.
6052         * lib/updatedb.sh: Only do regex comparison on directories,
6053         for speed.
6055         * listfile.c (list_file): Truncate user and group name to 8 chars.
6057 Sun Jun 24 13:51:27 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6059         * Version 1.1.
6061         * Makefile [DISTFILES]: Add COPYING.
6063 Fri Jun 22 03:54:27 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6065         * Version 1.0.
6067 Tue Jun 19 03:55:28 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6069         * lib/updatedb.sh: Prune entries that match PRUNEREGEX.
6070         Split up finding files from computing bigrams.
6071         Use redirection instead of nonportable grep -s to detect sort
6072         failure.  Optionally search network filesystems as well as
6073         local ones.
6075         * pred.c (pred_regex): Match against full pathname instead of
6076         just last element.
6077         * util.c (basename): Return "/", not "", if given "/".
6079         * find.c (process_path): Fix error in handling "/" directory.
6081 Mon Jun 18 01:49:16 1990  David J. MacKenzie  (djm at apple-gunkies)
6083         * parser.c [STRSPN_MISSING] (strspn): New function.
6085 Sun Jun 17 13:54:09 1990  David J. MacKenzie  (djm at apple-gunkies)
6087         * listfile.c: New file.
6088         * parser.c (parse_ls): New function.
6089         * pred.c (pred_ls): New function.
6091         * find.c (main): Remove interface to fastfind, to prevent
6092         conflict with POSIX syntax.
6093         * util.c (usage): Remove fastfind syntax from message.
6094         * fastfind.c (main): New function.
6095         * Makefile: Make fastfind a separate program.
6097         * find.c (main): Print correct message if a predicate arg is
6098         missing. 
6100         * parser.c (insert_exec_ok): Make args that start with a ';' but
6101         contain other characters not terminate the command.
6103 Fri Jun 15 00:33:45 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6105         * fstype.c: If MOUNTED isn't defined but MNT_MNTTAB is, use it
6106         instead.  True for HP/UX, at least.
6108 Thu Jun 14 10:10:25 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6110         * savedir.c: New file; now find won't run out of file
6111         descriptors in deep trees.
6112         * find.c (process_path): Use savedir.
6114 Sat Jun  9 03:15:21 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6116         * parser.c (parse_permmask): Allow symbolic mode masks.
6117         (parse_perm): Free 'struct change' when done with it.
6118         (get_oct): Function removed.
6120         * find.c (process_path): Allow arbitrarily-long filenames.
6121         More efficient string copying.  Initialize perm_mask to 07777
6122         instead of -1.
6124 Thu Jun  7 04:22:42 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6126         * Makefile, find.c: Use DIRENT to control whether <dirent.h>
6127         is used.
6129 Thu May 31 04:46:11 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6131         * parser.c (parse_regex): New function.
6132         * pred.c (pred_regex): New function.
6134         * fstype.c (read_mtab): If mtab entry has a "dev=" option
6135         (like in SunOS 4.1), use it, so there is no need to stat the
6136         special file later on.
6137         (xatoi, strstr): New functions.
6139 Mon May 21 01:04:42 1990  David J. MacKenzie  (djm at abyss)
6141         * lib/updatedb.sh: Put BINDIR in PATH.
6143         * fstype.c: Do nothing if MNTENT_MISSING is defined.
6145         * fstype.c: New file.
6146         * parser.c (parse_fstype): New function.
6147         * pred.c (pred_fstype): New function.
6149         * parser.c (parse_newer): Failure to stat -newer file is a
6150         fatal error.
6152         * pred.c (pred_ok): Flush output before reading.  Use getchar
6153         instead of scanf.
6155         * pred.c (pred_prune): Return false if -depth given.
6156         * find.c: Apply the predicates to the dir when -depth and
6157         -prune are given.
6159 Sun May 20 19:55:30 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6161         * pred.c (pred_prune): Set new global var `stop_at_current_level'.
6162         * find.c (process_path): Test and reset it.
6164 Fri May 18 01:56:17 1990  David J. MacKenzie  (djm at abyss)
6166         * modechange.c, modechange.h: New files.
6167         * parser.c (parse_perm): Use mode_compile and mode_adjust to
6168         parse arg, to allow symbolic mode for POSIX.
6170 Thu May 17 02:07:44 1990  David J. MacKenzie  (djm at abyss)
6172         * parser.c (get_oct): Don't consider an empty string a valid number.
6174         * parser.c (parse_perm): If arg starts with '-', set flag bit
6175         for special comparison (POSIX).
6176         * pred.c (pred_perm): If flag bit set, compare s[ug]id &
6177         sticky bits as well, and return true if the given perms are
6178         set, ignoring other bits.
6180         * find.c: New global var `exit_status'.  Use it.  (POSIX)
6181         * parser.c: Set `exit_status' if lstat on -newer file fails.
6183         * fastfind.c: New file.
6184         * find.c (main): Call fastfind if given only 1 arg.
6185         * util.c (usage): Update message. 
6186         * lib/{Makefile,updatedb.sh,bigram.c,code.c}: New files.
6187         * Makefile: Add 'all' and 'install' targets.
6189 Wed May 16 23:23:35 1990  David J. MacKenzie  (djm at abyss)
6191         * parser.c (parse_nogroup, parse_nouser): Implement.
6192         * pred.c (pred_nogroup, pred_nouser): Implement.
6194 Mon May 14 00:09:35 1990  David J. MacKenzie  (djm at abyss)
6196         * find.c: Add variable `stay_on_filesystem' for -xdev.
6197         (process_path): Take an arg determining whether this call is
6198         the root of a tree.  Use lstat instead of stat.  If
6199         stay_on_filesystem, don't process a dir on a different
6200         filesystem. 
6202         * parser.c (parse_newer): Use lstat instead of stat.  Is this right?
6203         (parse_xdev): Set stay_on_filesystem.
6205         * parser.c: Add dummy parse_nogroup, parse_nouser,
6206         parse_prune, and parse_xdev; to be written later.
6207         * pred.c: Add dummy pred_nogroup, pred_nouser, pred_prune.
6209         * find.c: Support System V directory library/headers.
6211         * find.c (process_path): Don't continue with a file that stat
6212         fails on.
6214         * defs.h, parser.c, pred.c: Change 'u_long' and 'u_short' to
6215         'unsigned long' and 'unsigned short'.
6216         * find.c, defs.h: Remove 'convert_glob' variable.
6217         * parser.c (parse_fullregex): Function removed.
6218         (parse_name): Remove regular expression code.
6219         (parse_type): Recognize sockets.
6220         Add code to check for missing arguments to many parse_* functions.
6221         * pred.c (pred_name): Use glob_match instead of regex.
6223 Sun May 13 17:45:09 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6225         * Replace fprintf, simple_error, and mem_error with error and
6226         usage. 
6228         * Fix string header includes for USG.
6230 Tue Mar 27 12:40:29 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6232         * defs.h: Change some #defines to enums.
6234 Sun Mar 25 22:08:58 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6236         * find.c (main): Don't take basename of argv[0].
6238         * util.c (xmalloc): New function.
6239         * find.c, parser.c, utils.c: Use xmalloc instead of malloc.
6241         * pred.c: Remove emulation of regex for BSD and use GNU
6242         library version in regcmp.c instead.
6243         * parser.c: Remove emulation of regcmp for BSD and use GNU
6244         library version in regcmp.c instead.
6245         * Makefile: Link with regex.o and regcmp.o.
6246         Add a DISTFILES macro and dist target.
6248         * Indent source code.  Move RCS logs to this file.
6250 Wed Mar 21 09:30:18 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)
6252         * xargs.c: Indent.  Comment and rename some global variables.
6253         (main): Use getopt to parse options.  Open new global var
6254         `tty_stream' to /dev/tty if querying requested.
6255         (print_args): Read response from tty_stream, not stdin.
6256         (xmalloc): New function.
6257         Global: Use xmalloc instead of malloc.
6258         (usage): Revise message.
6260 87/02/22  20:01:20  20:01:20  cire (Eric B. Decker)
6262         * pred.c: added guts to pred_size
6264 87/02/22  00:59:42  00:59:42  cire (Eric B. Decker)
6266         * pred.c: added guts to perm and permmask.
6268 87/02/21  23:02:21  23:02:21  cire (Eric B. Decker)
6270         * pred.c: made pred_name only look at the last component of
6271         the path.
6273 87/02/21  22:26:47  22:26:47  cire (Eric B. Decker)
6275         * pred.c: added guts to name.  useds regex and regcmp to do
6276         regular expression handling.
6278 87/02/21  00:17:21  00:17:21  cire (Eric B. Decker)
6280         * pred.c: added predicate newer
6282 87/02/20  11:40:07  11:40:07  cire (Eric B. Decker)
6284         * pred.c: added guts to pred_ok
6286 87/02/19  23:52:37  23:52:37  cire (Eric B. Decker)
6288         * pred.c: finished exec.
6290 87/02/22  20:01:09  20:01:09  cire (Eric B. Decker)
6292         * parser.c: added guts to parse_size
6294 87/02/22  00:59:16  00:59:16  cire (Eric B. Decker)
6296         * parser.c: added guts of perm and permmask.  added getoct
6297         routine for perm and permmask
6299 87/02/21  23:32:50  23:32:50  cire (Eric B. Decker)
6301         * parser.c: added -fre, -fullregex predicate to turn off
6302         globbing conversion
6304 87/02/21  23:01:01  23:01:01  cire (Eric B. Decker)
6306         * parser.c: reworked name so the regexpr pattern includes $ at
6307         the end to force globbing to work correctly.  End of the
6308         pattern refers to the end of the filename.
6310 87/02/21  22:25:34  22:25:34  cire (Eric B. Decker)
6312         * parser.c: added guts to name.  uses a conversion from
6313         globbing to regexp format.  uses regex and regcmp to actually
6314         to the comparison.
6316 87/02/21  00:17:11  00:17:11  cire (Eric B. Decker)
6318         * parser.c: added predicate newer
6320 87/02/20  11:39:35  11:39:35  cire (Eric B. Decker)
6322         * parser.c: added ok guts.  consolidated exec and ok to using
6323         insert_exec_ok
6325 87/02/19  00:20:54  00:20:54  cire (Eric B. Decker)
6327         * parser.c: minor bug in -fulldays predicate parser.  It
6328         should have set the flag full_days to true.
6330 87/02/22  00:58:32  00:58:32  cire (Eric B. Decker)
6332         * find.c: changed where we are setting perm_mask to -1.  need
6333         to make sure that this happens before every apply_predicate.
6335 87/02/21  23:32:11  23:32:11  cire (Eric B. Decker)
6337         * find.c: added error checking for no paths.  better error
6338         message if illegal ordering.
6340 87/02/21  22:19:58  22:19:58  cire (Eric B. Decker)
6342         * find.c: added global convert_glob
6344 87/02/22  20:00:12  20:00:12  cire (Eric B. Decker)
6346         * defs.h: added definition of BLKSIZE for size
6348 87/02/21  22:19:25  22:19:25  cire (Eric B. Decker)
6350         * defs.h: added global convert_glob for name