summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-04-26 17:51:40 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-04-26 17:51:41 (GMT)
commit8c1ba2131436f7412b3aa8642ea507cc171af5c4 (patch)
tree61ae5348e708640fafcba14d1d98ab74b977d79d /cache.h
parent731673b15ee886989afe57e50450e8ad9ed9dea3 (diff)
parent38f865c27d1f2560afb48efd2b7b105c1278c4b5 (diff)
downloadgit-8c1ba2131436f7412b3aa8642ea507cc171af5c4.zip
git-8c1ba2131436f7412b3aa8642ea507cc171af5c4.tar.gz
git-8c1ba2131436f7412b3aa8642ea507cc171af5c4.tar.bz2
Merge branch 'jk/run-command-eacces' into maint
When PATH contains an unreadable directory, alias expansion code did not kick in, and failed with an error that said "git-subcmd" was not found. By Jeff King (1) and Ramsay Jones (1) * jk/run-command-eacces: run-command: treat inaccessible directories as ENOENT compat/mingw.[ch]: Change return type of exec functions to int
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cache.h b/cache.h
index 806bf2b..5e6eef9 100644
--- a/cache.h
+++ b/cache.h
@@ -1305,4 +1305,6 @@ extern struct startup_info *startup_info;
/* builtin/merge.c */
int checkout_fast_forward(const unsigned char *from, const unsigned char *to);
+int sane_execvp(const char *file, char *const argv[]);
+
#endif /* CACHE_H */