X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=builtin-config.c;h=f71016204b540d0d935323c909a0ffccb1abdbe2;hb=3b91c30b763d972c5e133507ccc4b749dc2c6df5;hp=0cf191a11294f902d25aeda29e7290f3ab78b482;hpb=588c038ac690e012a00dcace34fb318449f5ec7c;p=git.git diff --git a/builtin-config.c b/builtin-config.c index 0cf191a11..f71016204 100644 --- a/builtin-config.c +++ b/builtin-config.c @@ -84,7 +84,7 @@ static int get_value(const char* key_, const char* regex_) local = config_exclusive_filename; if (!local) { const char *home = getenv("HOME"); - local = repo_config = xstrdup(git_path("config")); + local = repo_config = git_pathdup("config"); if (git_config_global() && home) global = xstrdup(mkpath("%s/.gitconfig", home)); if (git_config_system()) @@ -145,7 +145,7 @@ free_strings: return ret; } -char *normalize_value(const char *key, const char *value) +static char *normalize_value(const char *key, const char *value) { char *normalized;