Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
get_remote_group(): rename local variable "space" to "wordlen"
author
Michael Haggerty
<mhagger@alum.mit.edu>
Tue, 28 Jul 2015 21:08:19 +0000
(23:08 +0200)
committer
Junio C Hamano
<gitster@pobox.com>
Tue, 28 Jul 2015 21:39:21 +0000
(14:39 -0700)
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/fetch.c
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
c26f7d7
)
diff --git
a/builtin/fetch.c
b/builtin/fetch.c
index 9f7fe983a90e5df4becf35be76b66655a4c951a9..680ba66e53cac367e1d6e623dbde86a5e92eb902 100644
(file)
--- a/
builtin/fetch.c
+++ b/
builtin/fetch.c
@@
-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 */
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) {
while (*value) {
- if (
space
>= 1)
+ if (
wordlen
>= 1)
string_list_append(g->list,
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");
}
}
}
}