check_everything_connected: use a struct with named options
[gitweb.git] / builtin / clone.c
index 31ea247e3f262fb19595905869a7f2d874aa898e..32fe6060c377d7a2b12983457b99216d082f017a 100644 (file)
@@ -624,10 +624,13 @@ static void update_remote_refs(const struct ref *refs,
        const struct ref *rm = mapped_refs;
 
        if (check_connectivity) {
+               struct check_connected_options opt = CHECK_CONNECTED_INIT;
+
+               opt.transport = transport;
+
                if (transport->progress)
                        fprintf(stderr, _("Checking connectivity... "));
-               if (check_everything_connected_with_transport(iterate_ref_map,
-                                                             0, &rm, transport))
+               if (check_connected(iterate_ref_map, &rm, &opt))
                        die(_("remote did not send all necessary objects"));
                if (transport->progress)
                        fprintf(stderr, _("done.\n"));