X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=builtin-check-attr.c;h=6afdfa10a166a97c1115b1430221262228622c5c;hb=785586142a5ed083b97b7be472c08982ae88fd8f;hp=6983a73c1b387e5eb4a0c8dbc6b9e72b93735245;hpb=515106fa1335462393c08fa8712dddd767dc147a;p=git.git diff --git a/builtin-check-attr.c b/builtin-check-attr.c index 6983a73c1..6afdfa10a 100644 --- a/builtin-check-attr.c +++ b/builtin-check-attr.c @@ -1,4 +1,5 @@ #include "builtin.h" +#include "cache.h" #include "attr.h" #include "quote.h" @@ -10,6 +11,10 @@ int cmd_check_attr(int argc, const char **argv, const char *prefix) struct git_attr_check *check; int cnt, i, doubledash; + if (read_cache() < 0) { + die("invalid cache"); + } + doubledash = -1; for (i = 1; doubledash < 0 && i < argc; i++) { if (!strcmp(argv[i], "--")) @@ -42,7 +47,7 @@ int cmd_check_attr(int argc, const char **argv, const char *prefix) if (git_checkattr(argv[i], cnt, check)) die("git_checkattr died"); for (j = 0; j < cnt; j++) { - void *value = check[j].value; + const char *value = check[j].value; if (ATTR_TRUE(value)) value = "set"; @@ -51,8 +56,8 @@ int cmd_check_attr(int argc, const char **argv, const char *prefix) else if (ATTR_UNSET(value)) value = "unspecified"; - write_name_quoted("", 0, argv[i], 1, stdout); - printf(": %s: %s\n", argv[j+1], (char *) value); + quote_c_style(argv[i], NULL, stdout, 0); + printf(": %s: %s\n", argv[j+1], value); } } return 0;