mirror of
https://github.com/git/git.git
synced 2024-11-27 20:14:30 +08:00
get_remote_group(): use skip_prefix()
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
5f65499fa2
commit
bc598c32ae
@ -973,8 +973,7 @@ static int get_remote_group(const char *key, const char *value, void *priv)
|
||||
{
|
||||
struct remote_group_data *g = priv;
|
||||
|
||||
if (starts_with(key, "remotes.") &&
|
||||
!strcmp(key + 8, g->name)) {
|
||||
if (skip_prefix(key, "remotes.", &key) && !strcmp(key, g->name)) {
|
||||
/* split list by white space */
|
||||
while (*value) {
|
||||
size_t wordlen = strcspn(value, " \t\n");
|
||||
|
Loading…
Reference in New Issue
Block a user