commit 6c69e5ab94b982680805d23ce6ad1b0fbb3d9ae7 from: Mark Jamsek via: Thomas Adam date: Mon Feb 20 16:18:17 2023 UTC unbreak send.sh regress from recent ref-delta changes fix argument order typo in flags passed to got_pack_create() commit - 36967ea86e8738716661e52fa6d63b7a91698e90 commit + 6c69e5ab94b982680805d23ce6ad1b0fbb3d9ae7 blob - bb4d82021965534663cafd60789dda2ed93c43eb blob + 0486692895e4b6b08fffd79bda3f3e48d234eead --- lib/send.c +++ lib/send.c @@ -642,7 +642,7 @@ got_send_pack(const char *remote_name, struct got_path ppa.progress_cb = progress_cb; ppa.progress_arg = progress_arg; err = got_pack_create(packsha1, packfd, delta_cache, - their_ids, ntheirs, our_ids, nours, repo, 0, 0, 1, + their_ids, ntheirs, our_ids, nours, repo, 0, 1, 0, pack_progress, &ppa, &rl, cancel_cb, cancel_arg); if (err) goto done;