mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-02-16 04:12:26 +02:00
* lib/xfts.c (cycle_warning_required): New function. * lib/xfts.h: Declare it. * src/chown-core.c (change_file_owner): Diagnose a cycle. * src/chmod.c (process_file): Likewise. * src/chcon.c (process_file): Likewise. * NEWS (Bug fixes): Mention this.
10 lines
208 B
C
10 lines
208 B
C
#include <stdbool.h>
|
|
#include "fts_.h"
|
|
|
|
FTS *
|
|
xfts_open (char * const *, int options,
|
|
int (*) (const FTSENT **, const FTSENT **));
|
|
|
|
bool
|
|
cycle_warning_required (FTS const *fts, FTSENT const *ent);
|