summaryrefslogtreecommitdiff
path: root/git-compat-util.h
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2012-09-07 11:08:56 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2012-09-07 11:08:56 -0700
commit7fe136d78f5db3317ebf60115c1d7faa87412d6a (patch)
treed9f4d19d5bd01254450e6d4b169f9e30952de79e /git-compat-util.h
parentMerge branch 'kk/maint-for-each-ref-multi-sort' (diff)
parentwarn_on_inaccessible(): a helper to warn on inaccessible paths (diff)
downloadtgif-7fe136d78f5db3317ebf60115c1d7faa87412d6a.tar.xz
Merge branch 'jk/config-warn-on-inaccessible-paths'
When looking for $HOME/.gitconfig etc., it is OK if we cannot read them because they do not exist, but we did not diagnose existing files that we cannot read. * jk/config-warn-on-inaccessible-paths: warn_on_inaccessible(): a helper to warn on inaccessible paths attr: warn on inaccessible attribute files gitignore: report access errors of exclude files config: warn on inaccessible files
Diffstat (limited to 'git-compat-util.h')
-rw-r--r--git-compat-util.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h
index 34f040f595..fd732d7243 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -609,6 +609,12 @@ int rmdir_or_warn(const char *path);
*/
int remove_or_warn(unsigned int mode, const char *path);
+/* Call access(2), but warn for any error besides ENOENT. */
+int access_or_warn(const char *path, int mode);
+
+/* Warn on an inaccessible file that ought to be accessible */
+void warn_on_inaccessible(const char *path);
+
/* Get the passwd entry for the UID of the current process. */
struct passwd *xgetpwuid_self(void);