git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] don't set-group-id on directories on apple
@ 2007-10-22  7:55 Scott R Parish
  2007-10-22 14:16 ` Johannes Schindelin
  0 siblings, 1 reply; 4+ messages in thread
From: Scott R Parish @ 2007-10-22  7:55 UTC (permalink / raw)
  To: git

"git init --shared=all" was failing because chmod was returning
EPERM. According to the man page, the set-group-id behavior is
already default: man 2 mkdir:

  The directory's group ID is set to that of the parent directory
  in which it is created.

Signed-off-by: Scott R Parish <srp@srparish.net>
---
 path.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/path.c b/path.c
index 4260952..4089753 100644
--- a/path.c
+++ b/path.c
@@ -282,8 +282,10 @@ int adjust_shared_perm(const char *path)
 			 : (shared_repository == PERM_EVERYBODY
 			    ? (S_IXGRP|S_IXOTH)
 			    : 0));
+#if !defined(__APPLE__)
 	if (S_ISDIR(mode))
 		mode |= S_ISGID;
+#endif
 	if ((mode & st.st_mode) != mode && chmod(path, mode) < 0)
 		return -2;
 	return 0;
-- 
1.5.3.4.209.g5d1ce-dirty

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

end of thread, other threads:[~2007-10-23  4:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-22  7:55 [PATCH] don't set-group-id on directories on apple Scott R Parish
2007-10-22 14:16 ` Johannes Schindelin
2007-10-22 14:29   ` Scott Parish
2007-10-23  4:30     ` Scott Parish

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).