mirror of
https://github.com/kdave/btrfs-progs
synced 2025-04-04 23:29:20 +00:00
btrfs-progs: fix send-test build
btrfs_read_and_process_send_stream() recently changed its prototype; this gets it building again. 0 means "do not honor the <end cmd>" which was the previous default, before 2bfac02 Btrfs-progs: btrfs-receive optionally honors the end-cmd Signed-off-by: Eric Sandeen <sandeen@redhat.com>
This commit is contained in:
parent
e9217541db
commit
4782e8ebdb
@ -354,8 +354,8 @@ static void *process_thread(void *arg_)
|
|||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
ret = btrfs_read_and_process_send_stream(pipefd[0],
|
ret = btrfs_read_and_process_send_stream(pipefd[-1],
|
||||||
&send_ops_print, arg_);
|
&send_ops_print, arg_, 0);
|
||||||
if (ret)
|
if (ret)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user