summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-09-10 17:03:00 +0900
committerJunio C Hamano <gitster@pobox.com>2017-09-10 17:03:00 +0900
commit70def2c47fd541b6c62629a23054c317428ea43e (patch)
treeca97eb0daaf4f39de48e5d9061213df5d45dd3f2
parent822a4d41785829c67f6cd19e9e5f8541eb4c3c11 (diff)
parent1e22a9917b48809a1825f79c66e58e9b1b1da08a (diff)
downloadgit-70def2c47fd541b6c62629a23054c317428ea43e.tar.gz
Merge branch 'rj/add-chmod-error-message' into maint
Message fix. * rj/add-chmod-error-message: builtin/add: add detail to a 'cannot chmod' error message
-rw-r--r--builtin/add.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin/add.c b/builtin/add.c
index e888fb8c5f..5d5773d5cd 100644
--- a/builtin/add.c
+++ b/builtin/add.c
@@ -32,7 +32,7 @@ struct update_callback_data {
int add_errors;
};
-static void chmod_pathspec(struct pathspec *pathspec, int force_mode)
+static void chmod_pathspec(struct pathspec *pathspec, char flip)
{
int i;
@@ -42,8 +42,8 @@ static void chmod_pathspec(struct pathspec *pathspec, int force_mode)
if (pathspec && !ce_path_match(ce, pathspec, NULL))
continue;
- if (chmod_cache_entry(ce, force_mode) < 0)
- fprintf(stderr, "cannot chmod '%s'", ce->name);
+ if (chmod_cache_entry(ce, flip) < 0)
+ fprintf(stderr, "cannot chmod %cx '%s'\n", flip, ce->name);
}
}