Commit 5a2f097fdc1408500cff9addf378f86046363665

Russell Belfer 2012-02-03T17:05:05

Fix minor WIN32 incompatibility File mode flags are not all defined on WIN32, but since git is so rigid in how it uses file modes, there is no reason not to hard code a particular value. Also, this is only used in the git_diff_print_compact helper function, so it is really really not important.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/src/diff.c b/src/diff.c
index 252fdb8..a5b5e61 100644
--- a/src/diff.c
+++ b/src/diff.c
@@ -445,7 +445,10 @@ static char pick_suffix(int mode)
 {
 	if (S_ISDIR(mode))
 		return '/';
-	else if (mode & S_IXUSR)
+	else if (mode & 0100)
+		/* modes in git are not very flexible, so if this bit is set,
+		 * we must be dealwith with a 100755 type of file.
+		 */
 		return '*';
 	else
 		return ' ';