git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] use filetest pragma to work with ACL
@ 2017-10-18 19:55 Guillaume Castagnino
  2017-10-18 20:05 ` Stefan Beller
  2017-10-18 21:24 ` Jeff King
  0 siblings, 2 replies; 6+ messages in thread
From: Guillaume Castagnino @ 2017-10-18 19:55 UTC (permalink / raw)
  To: git

From: Guillaume Castagnino <casta@xwing.info>

as stated in comment in https://github.com/git/git/commit/46a13857fc036b54ac2ddd0a218e5cc171aa7bd9#diff-00703a794a540acf45e225abd6aeda3b the referenced commit is broken when using ACL and not basic UNIX rights.
this commit handle ACL too
---
 gitweb/gitweb.perl | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 9208f42ed1753..0ee7f304ce2b1 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -3072,6 +3072,7 @@ sub git_get_projects_list {
 				# only directories can be git repositories
 				return unless (-d $_);
 				# need search permission
+				use filetest 'access';
 				return unless (-x $_);
 				# don't traverse too deep (Find is super slow on os x)
 				# $project_maxdepth excludes depth of $projectroot

--
https://github.com/git/git/pull/416

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-10-24  5:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-18 19:55 [PATCH] use filetest pragma to work with ACL Guillaume Castagnino
2017-10-18 20:05 ` Stefan Beller
2017-10-18 21:24 ` Jeff King
2017-10-19  7:53   ` Guillaume Castagnino
2017-10-19 16:13     ` Jeff King
2017-10-24  5:02       ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).