Re: [Patch] faster fnmatch

2009-05-01 Thread Ralf Wildenhues
Hello Ondrej, * Ondrej Bilka wrote on Thu, Apr 30, 2009 at 10:41:49PM CEST: > I here attach compiled fnmatch I wrote as gnulib module. I haven't read your patch closely, but it fails to check the return value from all of the malloc/realloc... functions, opening up several opportunities for segme

Re: fts: make find *much* faster on dirent.d_type-challenged FS

2009-02-12 Thread Ralf Wildenhues
Hi Jim, * Jim Meyering wrote on Thu, Feb 12, 2009 at 10:58:24PM CET: > Following up on this thread, > > http://thread.gmane.org/gmane.comp.gnu.findutils.bugs/3894 > > Here are the gnulib pieces to make find stop stat'ing > non-directories on reiserfs file systems. Nice speedup! A couple of c

a few minor fixes

2008-02-13 Thread Ralf Wildenhues
Hello James, bug-findutils readers, here's a set of really tiny, unrelated cleanup patches for current CVS findutils. - locate/code.c uses the gnulib progname module, - @INTLLIBS@ is deprecated, @LIBINTL@ is the modern way for this, - a couple of typos. Cheers, Ralf 2008-02-13 Ralf Wilde

typos

2007-01-09 Thread Ralf Wildenhues
Hello there, Here's some typo fixes and missing comma after "e.g.". Cheers, Ralf 2007-01-09 Ralf Wildenhues <[EMAIL PROTECTED]> * doc/find.texi: Fix some typos. Index: doc/find.texi === RCS fil

typos in manual

2006-08-16 Thread Ralf Wildenhues
2006-08-16 Ralf Wildenhues <[EMAIL PROTECTED]> * doc/find.texi: Fix some typos. Index: doc/find.texi === RCS file: /cvsroot/findutils/findutils/doc/find.texi,v retrieving revision 1.119 diff -u -r1.119 find.texi -

Re: small compile nit: extern vs static

2006-06-14 Thread Ralf Wildenhues
Hello James, * James Youngman wrote on Wed, Jun 14, 2006 at 11:44:40PM CEST: > On 5/30/06, Ralf Wildenhues <[EMAIL PROTECTED]> wrote: > >Recent GCC will barf over an extern variable declaration followed by a > >static one. This patch fixes building the CVS

small compile nit: extern vs static

2006-05-30 Thread Ralf Wildenhues
Recent GCC will barf over an extern variable declaration followed by a static one. This patch fixes building the CVS version of findutils. Cheers, Ralf * find/defs.h (last_pred): Do not declare, this is static now. Index: find/defs.h =