summaryrefslogtreecommitdiff
path: root/dir.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-08-21 21:52:07 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-08-21 21:52:07 (GMT)
commit55b38a48e2a7ccfaaa7897a5fccb98327fa0e3c0 (patch)
tree54ba6e46f12bccd1af9faf258d9826a8001b22e6 /dir.c
parent11e50b2736f374f1608e0c5690405be1a74aa16d (diff)
downloadgit-55b38a48e2a7ccfaaa7897a5fccb98327fa0e3c0.zip
git-55b38a48e2a7ccfaaa7897a5fccb98327fa0e3c0.tar.gz
git-55b38a48e2a7ccfaaa7897a5fccb98327fa0e3c0.tar.bz2
warn_on_inaccessible(): a helper to warn on inaccessible paths
The previous series introduced warnings to multiple places, but it could become tiring to see the warning on the same path over and over again during a single run of Git. Making just one function responsible for issuing this warning, we could later choose to keep track of which paths we issued a warning (it would involve a hash table of paths after running them through real_path() or something) in order to reduce noise. Right now we do not know if the noise reduction is necessary, but it still would be a good code reduction/sharing anyway. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dir.c b/dir.c
index ea74048..4868339 100644
--- a/dir.c
+++ b/dir.c
@@ -398,7 +398,7 @@ int add_excludes_from_file_to_list(const char *fname,
fd = open(fname, O_RDONLY);
if (fd < 0 || fstat(fd, &st) < 0) {
if (errno != ENOENT)
- warning(_("unable to access '%s': %s"), fname, strerror(errno));
+ warn_on_inaccessible(fname);
if (0 <= fd)
close(fd);
if (!check_index ||