commit bd56d7e1de5fb58f775afab6d908dbea7a2833de from: Mark Jamsek date: Sat Feb 18 02:17:38 2023 UTC unbreak send.sh regress from recent ref-delta changes fix argument order typo in flags passed to got_pack_create() commit - d35c69f0312bf3a3e11a2668c942bacdded34b4d commit + bd56d7e1de5fb58f775afab6d908dbea7a2833de blob - 0d7e06e0cebfa5b52ece66ddf1829aeb6b724bde blob + fda69159daf96e2499dd3ec55a92b67b66438a3a --- lib/send.c +++ lib/send.c @@ -647,7 +647,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;