diff options
| author | Kristoffer Haugsbakk <code@khaugsbakk.name> | 2024-01-18 17:12:50 +0100 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-01-18 12:17:41 -0800 |
| commit | ecffa3ed51aaa7af0119542ce31a1be5f40edcf9 (patch) | |
| tree | cb27c00c14e53a7b64e19b013d2eca23396e1eeb /builtin/config.c | |
| parent | config: format newlines (diff) | |
| download | git-ecffa3ed51aaa7af0119542ce31a1be5f40edcf9.tar.gz git-ecffa3ed51aaa7af0119542ce31a1be5f40edcf9.zip | |
config: rename global config function
Rename this function to a more descriptive name since we want to use the
existing name for a new function.
Signed-off-by: Kristoffer Haugsbakk <code@khaugsbakk.name>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/config.c')
| -rw-r--r-- | builtin/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/config.c b/builtin/config.c index 87d0dc92d9..6fff265581 100644 --- a/builtin/config.c +++ b/builtin/config.c @@ -710,7 +710,7 @@ int cmd_config(int argc, const char **argv, const char *prefix) if (use_global_config) { char *user_config, *xdg_config; - git_global_config(&user_config, &xdg_config); + git_global_config_paths(&user_config, &xdg_config); if (!user_config) /* * It is unknown if HOME/.gitconfig exists, so |
