diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-03-10 13:24:21 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-03-10 13:24:21 -0800 |
commit | 34061299002fcbf5467385debbd9ad3d5f1c5a4e (patch) | |
tree | d7e7db49b43c439ba138c5afa1598500e2266037 /refs.c | |
parent | a729e4671a2a117143cc1b4041a8b47699293b95 (diff) | |
parent | 49624d1e518f14fe03ba6c8824aaaf420e01a834 (diff) | |
download | git-34061299002fcbf5467385debbd9ad3d5f1c5a4e.tar.gz |
Merge branch 'sb/parse-hide-refs-config-cleanup'
Code clean-up.
* sb/parse-hide-refs-config-cleanup:
refs: parse_hide_refs_config to use parse_config_key
Diffstat (limited to 'refs.c')
-rw-r--r-- | refs.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1035,10 +1035,11 @@ static struct string_list *hide_refs; int parse_hide_refs_config(const char *var, const char *value, const char *section) { + const char *subsection, *key; + int subsection_len; if (!strcmp("transfer.hiderefs", var) || - /* NEEDSWORK: use parse_config_key() once both are merged */ - (starts_with(var, section) && var[strlen(section)] == '.' && - !strcmp(var + strlen(section), ".hiderefs"))) { + (!parse_config_key(var, section, &subsection, &subsection_len, &key) + && !subsection && !strcmp(key, "hiderefs"))) { char *ref; int len; |