]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(main): Use FTS_PHYSICAL here, too.
authorJim Meyering <jim@meyering.net>
Sat, 20 May 2006 17:27:07 +0000 (17:27 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 20 May 2006 17:27:07 +0000 (17:27 +0000)
src/chmod.c

index 75d1b874fbbdb2915e76491bd301a0fc94861145..ac517ba2373b105b0e9ed7300127033684418973 100644 (file)
@@ -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);
 }