1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-27 00:36:37 +02:00

get_remote_group(): rename local variable "space" to "wordlen"

Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Michael Haggerty 2015-07-28 23:08:19 +02:00 committed by Junio C Hamano
parent c26f7d7b26
commit e286542de0

View File

@ -976,13 +976,13 @@ static int get_remote_group(const char *key, const char *value, void *priv)
if (starts_with(key, "remotes.") &&
!strcmp(key + 8, g->name)) {
/* split list by white space */
int space = strcspn(value, " \t\n");
size_t wordlen = strcspn(value, " \t\n");
while (*value) {
if (space >= 1)
if (wordlen >= 1)
string_list_append(g->list,
xstrndup(value, space));
value += space + (value[space] != '\0');
space = strcspn(value, " \t\n");
xstrndup(value, wordlen));
value += wordlen + (value[wordlen] != '\0');
wordlen = strcspn(value, " \t\n");
}
}