From: Jim Meyering Date: Sat, 20 May 2006 17:27:07 +0000 (+0000) Subject: (main): Use FTS_PHYSICAL here, too. X-Git-Tag: v6.0~377 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae5d9079f99a2957141513ff577c9227f75b9749;p=thirdparty%2Fcoreutils.git (main): Use FTS_PHYSICAL here, too. --- diff --git a/src/chmod.c b/src/chmod.c index 75d1b874fb..ac517ba237 100644 --- a/src/chmod.c +++ b/src/chmod.c @@ -508,7 +508,7 @@ main (int argc, char **argv) root_dev_ino = NULL; } - ok = process_files (argv + optind, FTS_COMFOLLOW); + ok = process_files (argv + optind, FTS_COMFOLLOW | FTS_PHYSICAL); exit (ok ? EXIT_SUCCESS : EXIT_FAILURE); }