Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 Oct 2009 20:10:04 GMT
From:      dfilter@FreeBSD.org (dfilter service)
To:        freebsd-standards@FreeBSD.org
Subject:   Re: standards/128546: commit references a PR
Message-ID:  <200910142010.n9EKA4uJ069459@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR standards/128546; it has been noted by GNATS.

From: dfilter@FreeBSD.org (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: standards/128546: commit references a PR
Date: Tue, 13 Oct 2009 21:52:05 +0000 (UTC)

 Author: jilles
 Date: Tue Oct 13 21:51:50 2009
 New Revision: 198056
 URL: http://svn.freebsd.org/changeset/base/198056
 
 Log:
   ls: Make -p not inhibit following symlinks.
   
   According to the man page, when neither -H/-L nor -F/-d/-l are given, -H is
   implied. This agrees with POSIX, GNU ls and Solaris ls. This means that -p,
   although it is very similar to -F, does not prevent the implicit following
   of symlinks.
   
   PR:		standards/128546
 
 Modified:
   head/bin/ls/ls.c
 
 Modified: head/bin/ls/ls.c
 ==============================================================================
 --- head/bin/ls/ls.c	Tue Oct 13 21:28:51 2009	(r198055)
 +++ head/bin/ls/ls.c	Tue Oct 13 21:51:50 2009	(r198056)
 @@ -399,7 +399,7 @@ main(int argc, char *argv[])
  	 * If not -F, -d or -l options, follow any symbolic links listed on
  	 * the command line.
  	 */
 -	if (!f_longform && !f_listdir && !f_type)
 +	if (!f_longform && !f_listdir && (!f_type || f_slash))
  		fts_options |= FTS_COMFOLLOW;
  
  	/*
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 
 >How-To-Repeat:
 >Fix:
 >Release-Note:
 >Audit-Trail:
 >Unformatted:
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200910142010.n9EKA4uJ069459>