Merge from vendor branch TNF:
[pkgsrcv2.git] / sysutils / xfsprogs / patches / patch-af
1 $NetBSD$
2
3 --- /dev/null   2005-12-30 09:57:10.000000000 +0000
4 +++ include/ftw.h       2005-12-30 10:35:54.000000000 +0000
5 @@ -0,0 +1,62 @@
6 +/* NetBSD */
7 +
8 +/*     From OpenBSD: ftw.h,v 1.1 2003/07/21 21:13:18 millert Exp       */
9 +
10 +/*
11 + * Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com>
12 + *
13 + * Permission to use, copy, modify, and distribute this software for any
14 + * purpose with or without fee is hereby granted, provided that the above
15 + * copyright notice and this permission notice appear in all copies.
16 + *
17 + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
18 + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
19 + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
20 + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
21 + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
22 + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
23 + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
24 + *
25 + * Sponsored in part by the Defense Advanced Research Projects
26 + * Agency (DARPA) and Air Force Research Laboratory, Air Force
27 + * Materiel Command, USAF, under agreement number F39502-99-1-0512.
28 + */
29 +
30 +#ifndef        _FTW_H
31 +#define        _FTW_H
32 +
33 +#include <sys/types.h>
34 +#include <sys/stat.h>
35 +
36 +/*
37 + * Valid flags for the 3rd argument to the function that is passed as the
38 + * second argument to ftw(3) and nftw(3).  Say it three times fast!
39 + */
40 +#define        FTW_F           0       /* File.  */
41 +#define        FTW_D           1       /* Directory.  */
42 +#define        FTW_DNR         2       /* Directory without read permission.  */
43 +#define        FTW_DP          3       /* Directory with subdirectories visited.  */
44 +#define        FTW_NS          4       /* Unknown type; stat() failed.  */
45 +#define        FTW_SL          5       /* Symbolic link.  */
46 +#define        FTW_SLN         6       /* Sym link that names a nonexistent file.  */
47 +
48 +/*
49 + * Flags for use as the 4th argument to nftw(3).  These may be ORed together.
50 + */
51 +#define        FTW_PHYS        0x01    /* Physical walk, don't follow sym links.  */
52 +#define        FTW_MOUNT       0x02    /* The walk does not cross a mount point.  */
53 +#define        FTW_DEPTH       0x04    /* Subdirs visited before the dir itself. */
54 +#define        FTW_CHDIR       0x08    /* Change to a directory before reading it. */
55 +
56 +struct FTW {
57 +       int base;
58 +       int level;
59 +};
60 +
61 +__BEGIN_DECLS
62 +int    ftw(const char *, int (*)(const char *, const struct stat *, int), int);
63 +int    nftw(const char *, int (*)(const char *, const struct stat *, int,
64 +           struct FTW *), int, int);
65 +__END_DECLS
66 +
67 +#endif /* !_FTW_H */