[PATCH] config.c: Remove unused git_config_global() function
From: Ramsay Jones <hidden>
Date: 2016-06-15 22:51:21
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Ramsay Jones <hidden>
Date: 2016-06-15 22:51:21
Subsystem:
the rest · Maintainer:
Linus Torvalds
Commit 8f323c00 (drop support for GIT_CONFIG_NOGLOBAL, 15-03-2011)
removed the git_config_global() function, among other things, since
it is no longer required. Unfortunately, this function has since
been unintentionally restored; I suspect by merge commit 25b86e45
(Merge branch 'jk/maint-config-alias-fix' into next, 25-05-2011).
Signed-off-by: Ramsay Jones <redacted>
---
Hi Junio,
A few days ago, when the next branch was @ d10669c, I noticed that
"make sparse" on next was complaining thus:
config.c:828:5: warning: symbol 'git_config_global' was not \
declared. Should it be static?
However, I remembered that this function had recently been removed, so
I took a quick look ...
ATB,
Ramsay Jones
config.c | 5 -----
1 files changed, 0 insertions(+), 5 deletions(-)
diff --git a/config.c b/config.c
index a8267e9..e0b3b80 100644
--- a/config.c
+++ b/config.c@@ -825,11 +825,6 @@ int git_config_system(void) return !git_env_bool("GIT_CONFIG_NOSYSTEM", 0); } -int git_config_global(void) -{ - return !git_env_bool("GIT_CONFIG_NOGLOBAL", 0); -} - int git_config_early(config_fn_t fn, void *data, const char *repo_config) { int ret = 0, found = 0;
--
1.7.5