From 5a2f097fdc1408500cff9addf378f86046363665 Mon Sep 17 00:00:00 2001 From: Russell Belfer Date: Fri, 3 Feb 2012 17:05:05 -0800 Subject: [PATCH] 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. --- src/diff.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/diff.c b/src/diff.c index 252fdb8fa..a5b5e6198 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 ' ';