diff options
author | Jeff King <peff@peff.net> | 2011-05-24 18:49:36 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-24 16:20:48 -0700 |
commit | 3ddf0968c2f64a9f9fa6880d9c22d40459c88335 (patch) | |
tree | 3c0a3bcbbdd3cb2f9d83b9e6bed3879977b45a64 /config.c | |
parent | dbdf5854b21852676de6a8baf052147217ce809b (diff) | |
download | git-3ddf0968c2f64a9f9fa6880d9c22d40459c88335.tar.gz |
config: make environment parsing routines static
Nobody outside of git_config_from_parameters should need
to use the GIT_CONFIG_PARAMETERS parsing functions, so let's
make them private.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -48,7 +48,7 @@ void git_config_push_parameter(const char *text) strbuf_release(&env); } -int git_config_parse_parameter(const char *text) +static int git_config_parse_parameter(const char *text) { struct config_item *ct; struct strbuf tmp = STRBUF_INIT; @@ -75,7 +75,7 @@ int git_config_parse_parameter(const char *text) return 0; } -int git_config_parse_environment(void) { +static int git_config_parse_environment(void) { const char *env = getenv(CONFIG_DATA_ENVIRONMENT); char *envw; const char **argv = NULL; |