git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] merge-index: fix longstanding bug in merging symlinks
@ 2007-02-26  2:46 Junio C Hamano
  0 siblings, 0 replies; only message in thread
From: Junio C Hamano @ 2007-02-26  2:46 UTC (permalink / raw)
  To: git

Ancient commit e2b6a9d0 added code to pass "file modes" from
merge-index to merge-one-file, and then later commit 54dd99a1
wanted to make sure we do not end up creating a nonsense symlink
that points at a path whose name contains conflict markers.

However, nobody that the code in merge-index added by e2b6a9d0
were stripping the S_IFMT bits so the code in 54dd99a1 was
meaningless.

Signed-off-by: Junio C Hamano <junkio@cox.net>
---
 merge-index.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/merge-index.c b/merge-index.c
index a9983dd..7027d78 100644
--- a/merge-index.c
+++ b/merge-index.c
@@ -60,7 +60,7 @@ static int merge_entry(int pos, const char *path)
 			break;
 		found++;
 		strcpy(hexbuf[stage], sha1_to_hex(ce->sha1));
-		sprintf(ownbuf[stage], "%o", ntohl(ce->ce_mode) & (~S_IFMT));
+		sprintf(ownbuf[stage], "%o", ntohl(ce->ce_mode));
 		arguments[stage] = hexbuf[stage];
 		arguments[stage + 4] = ownbuf[stage];
 	} while (++pos < active_nr);
-- 
1.5.0.1.793.gedfd5

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2007-02-26  2:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-02-26  2:46 [PATCH] merge-index: fix longstanding bug in merging symlinks 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).