Add an FSF copyright notice, since our changes are becoming nontrivial.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 2 Aug 2004 19:41:35 +0000 (19:41 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 2 Aug 2004 19:41:35 +0000 (19:41 +0000)
Include stddef.h, for ptrdiff_t.
(FTS.fts_nitems): Now size_t, not int, for hosts that allow more
than INT_MAX entries in a directory.
(FTS_ROOTPARENTLEVEL): Parenthesize properly.
(FTSENT.fts_level): Now ptrdiff_t, not int, to allow recursing more
than INT_MAX levels deep on 64-bit hosts.
(FTSENT.fts_namelen): Now size_t, not u_short, to support hosts like
the Hurd that don't have arbitrary limits on directory entry lengths.
(FTSENT.fts_statp): Now an array, not a pointer, so that we don't
have to play unportable games with pointer arithmetic.  Keep it array
for the benefit of user code that assumes it is a pointer.

lib/fts_.h

index 496211f6ee5117025b7e5df284706e26031bf639..aa4aa3ffa22d2cb3ee3a53cbbd7032425445b19b 100644 (file)
@@ -1,3 +1,21 @@
+/* Traverse a file hierarchy.
+
+   Copyright (C) 2004 Free Software Foundation, Inc.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2, or (at your option)
+   any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software Foundation,
+   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
+
 /*
  * Copyright (c) 1989, 1993
  *     The Regents of the University of California.  All rights reserved.
@@ -43,6 +61,7 @@
 #  define __END_DECLS
 # endif
 
+# include <stddef.h>
 # include <sys/types.h>
 # include "hash.h"
 # include "cycle-check.h"
@@ -55,7 +74,7 @@ typedef struct {
        char *fts_path;                 /* path for this descent */
        int fts_rfd;                    /* fd for root */
        size_t fts_pathlen;             /* sizeof(path) */
-       int fts_nitems;                 /* elements in the sort array */
+       size_t fts_nitems;                      /* elements in the sort array */
        int (*fts_compar) (const void *, const void *); /* compare fn */
 
 # define FTS_COMFOLLOW 0x0001          /* follow command line symlinks */
@@ -116,11 +135,11 @@ typedef struct _ftsent {
        dev_t fts_dev;                  /* device */
        nlink_t fts_nlink;              /* link count */
 
-# define FTS_ROOTPARENTLEVEL   -1
+# define FTS_ROOTPARENTLEVEL   (-1)
 # define FTS_ROOTLEVEL          0
-       int fts_level;                  /* depth (-1 to N) */
+       ptrdiff_t fts_level;            /* depth (-1 to N) */
 
-       u_short fts_namelen;            /* strlen(fts_name) */
+       size_t fts_namelen;             /* strlen(fts_name) */
 
 # define FTS_D          1              /* preorder directory */
 # define FTS_DC                 2              /* directory that causes cycles */
@@ -148,7 +167,7 @@ typedef struct _ftsent {
 # define FTS_SKIP       4              /* discard node */
        u_short fts_instr;              /* fts_set() instructions */
 
-       struct stat *fts_statp;         /* stat(2) information */
+       struct stat fts_statp[1];       /* stat(2) information */
        char fts_name[1];               /* file name */
 } FTSENT;