summaryrefslogtreecommitdiff
path: root/dir.c
diff options
context:
space:
mode:
authorPaul Tan <pyokagan@gmail.com>2015-05-06 08:01:00 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-05-06 18:33:17 (GMT)
commit2845ce7ff1398e851d46b62154293378b74c466d (patch)
tree7ca9548eb03da091c452e4c0977c90b0dd3fed9a /dir.c
parent2527bbce25dcfd952064cf02057ad8729134ed44 (diff)
downloadgit-2845ce7ff1398e851d46b62154293378b74c466d.zip
git-2845ce7ff1398e851d46b62154293378b74c466d.tar.gz
git-2845ce7ff1398e851d46b62154293378b74c466d.tar.bz2
dir.c: replace home_config_paths() with xdg_config_home()
Since only the xdg excludes file path is required, simplify the code by replacing use of home_config_paths() with xdg_config_home(). Signed-off-by: Paul Tan <pyokagan@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/dir.c b/dir.c
index 3f7a025..cb8f549 100644
--- a/dir.c
+++ b/dir.c
@@ -1622,14 +1622,11 @@ int remove_dir_recursively(struct strbuf *path, int flag)
void setup_standard_excludes(struct dir_struct *dir)
{
const char *path;
- char *xdg_path;
dir->exclude_per_dir = ".gitignore";
path = git_path("info/exclude");
- if (!excludes_file) {
- home_config_paths(NULL, &xdg_path, "ignore");
- excludes_file = xdg_path;
- }
+ if (!excludes_file)
+ excludes_file = xdg_config_home("ignore");
if (!access_or_warn(path, R_OK, 0))
add_excludes_from_file(dir, path);
if (excludes_file && !access_or_warn(excludes_file, R_OK, 0))