]> git.ipfire.org Git - thirdparty/git.git/blobdiff - http-backend.c
travis-ci: make the OSX build jobs' 'brew update' more quiet
[thirdparty/git.git] / http-backend.c
index 458642ef72b879a2f53d6e1f8f192847ed814111..9e894f197f91ee3565b0f3c618fdb4042e2f229f 100644 (file)
@@ -595,13 +595,13 @@ static void get_info_packs(struct strbuf *hdr, char *arg)
        size_t cnt = 0;
 
        select_getanyfile(hdr);
-       for (p = get_packed_git(the_repository); p; p = p->next) {
+       for (p = get_all_packs(the_repository); p; p = p->next) {
                if (p->pack_local)
                        cnt++;
        }
 
        strbuf_grow(&buf, cnt * 53 + 2);
-       for (p = get_packed_git(the_repository); p; p = p->next) {
+       for (p = get_all_packs(the_repository); p; p = p->next) {
                if (p->pack_local)
                        strbuf_addf(&buf, "P %s\n", p->pack_name + objdirlen + 6);
        }