svn commit: r204448 - stable/8/bin/ls

Jaakko Heinonen jh at FreeBSD.org
Sun Feb 28 14:04:21 UTC 2010


Author: jh
Date: Sun Feb 28 14:04:20 2010
New Revision: 204448
URL: http://svn.freebsd.org/changeset/base/204448

Log:
  MFC r203665:
  
  Make sure that FTS_COMFOLLOW is not set when the -P option is in effect.
  Otherwise the -i option will show the inode number of the referenced file
  for symbolic links given on the command line. Similarly, the file color
  was printed according to the link target in colorized output.
  
  PR:		bin/102394

Modified:
  stable/8/bin/ls/ls.c
Directory Properties:
  stable/8/bin/ls/   (props changed)

Modified: stable/8/bin/ls/ls.c
==============================================================================
--- stable/8/bin/ls/ls.c	Sun Feb 28 13:31:29 2010	(r204447)
+++ stable/8/bin/ls/ls.c	Sun Feb 28 14:04:20 2010	(r204448)
@@ -113,6 +113,7 @@ static int f_listdir;		/* list actual di
 static int f_listdot;		/* list files beginning with . */
 static int f_noautodot;		/* do not automatically enable -A for root */
        int f_longform;		/* long listing format */
+static int f_nofollow;		/* don't follow symbolic link arguments */
        int f_nonprint;		/* show unprintables as ? */
 static int f_nosort;		/* don't sort output */
        int f_notabs;		/* don't use tab-separated multi-col output */
@@ -234,6 +235,7 @@ main(int argc, char *argv[])
 			break;
 		case 'H':
 			fts_options |= FTS_COMFOLLOW;
+			f_nofollow = 0;
 			break;
 		case 'G':
 			setenv("CLICOLOR", "", 1);
@@ -241,11 +243,13 @@ main(int argc, char *argv[])
 		case 'L':
 			fts_options &= ~FTS_PHYSICAL;
 			fts_options |= FTS_LOGICAL;
+			f_nofollow = 0;
 			break;
 		case 'P':
 			fts_options &= ~FTS_COMFOLLOW;
 			fts_options &= ~FTS_LOGICAL;
 			fts_options |= FTS_PHYSICAL;
+			f_nofollow = 1;
 			break;
 		case 'R':
 			f_recursive = 1;
@@ -396,10 +400,10 @@ main(int argc, char *argv[])
 		fts_options |= FTS_NOSTAT;
 
 	/*
-	 * If not -F, -d or -l options, follow any symbolic links listed on
+	 * If not -F, -P, -d or -l options, follow any symbolic links listed on
 	 * the command line.
 	 */
-	if (!f_longform && !f_listdir && !f_type)
+	if (!f_nofollow && !f_longform && !f_listdir && !f_type)
 		fts_options |= FTS_COMFOLLOW;
 
 	/*


More information about the svn-src-stable mailing list