diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-09-17 15:58:49 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-09-17 15:58:49 -0700 |
commit | 26f4f2c74e2632b708ba3dd4ae2e69d359878ccd (patch) | |
tree | be405642853c19aad329f0dc0de4c623ab425bc7 /test-string-list.c | |
parent | 9e40b6e59573dfd58746f9b1aafd5305ffe3c53f (diff) | |
parent | 65119878548f869270fbc8d382f042cca3a6ad05 (diff) | |
download | git-26f4f2c74e2632b708ba3dd4ae2e69d359878ccd.tar.gz |
Merge branch 'mh/fetch-filter-refs'
Code simplification and clarification.
* mh/fetch-filter-refs:
test-string-list.c: Fix some sparse warnings
fetch-pack: eliminate spurious error messages
cmd_fetch_pack(): simplify computation of return value
fetch-pack: report missing refs even if no existing refs were received
cmd_fetch_pack(): return early if finish_connect() fails
filter_refs(): simplify logic
filter_refs(): build refs list as we go
filter_refs(): delete matched refs from sought list
fetch_pack(): update sought->nr to reflect number of unique entries
filter_refs(): do not check the same sought_pos twice
Change fetch_pack() and friends to take string_list arguments
fetch_pack(): reindent function decl and defn
Rename static function fetch_pack() to http_fetch_pack()
t5500: add tests of fetch-pack --all --depth=N $URL $REF
t5500: add tests of error output for missing refs
Diffstat (limited to 'test-string-list.c')
-rw-r--r-- | test-string-list.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test-string-list.c b/test-string-list.c index 5e9631fe34..4693295a98 100644 --- a/test-string-list.c +++ b/test-string-list.c @@ -7,7 +7,7 @@ * list (as opposed to "", which indicates a string list containing a * single empty string). list->strdup_strings must be set. */ -void parse_string_list(struct string_list *list, const char *arg) +static void parse_string_list(struct string_list *list, const char *arg) { if (!strcmp(arg, "-")) return; @@ -15,14 +15,14 @@ void parse_string_list(struct string_list *list, const char *arg) (void)string_list_split(list, arg, ':', -1); } -void write_list(const struct string_list *list) +static void write_list(const struct string_list *list) { int i; for (i = 0; i < list->nr; i++) printf("[%d]: \"%s\"\n", i, list->items[i].string); } -void write_list_compact(const struct string_list *list) +static void write_list_compact(const struct string_list *list) { int i; if (!list->nr) @@ -35,7 +35,7 @@ void write_list_compact(const struct string_list *list) } } -int prefix_cb(struct string_list_item *item, void *cb_data) +static int prefix_cb(struct string_list_item *item, void *cb_data) { const char *prefix = (const char *)cb_data; return !prefixcmp(item->string, prefix); |