From: Eric Sandeen Date: Sat, 20 Apr 2013 04:37:10 +0000 (-0700) Subject: btrfs-progs: fix send-test build X-Git-Tag: upstream/4.16.1~3316 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4782e8ebdb583dfa3615f7b38dee729d34f62ec1;p=platform%2Fupstream%2Fbtrfs-progs.git 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 " which was the previous default, before 2bfac02 Btrfs-progs: btrfs-receive optionally honors the end-cmd Signed-off-by: Eric Sandeen --- diff --git a/send-test.c b/send-test.c index 8c14718..4a53ae2 100644 --- a/send-test.c +++ b/send-test.c @@ -354,8 +354,8 @@ static void *process_thread(void *arg_) int ret; while (1) { - ret = btrfs_read_and_process_send_stream(pipefd[0], - &send_ops_print, arg_); + ret = btrfs_read_and_process_send_stream(pipefd[-1], + &send_ops_print, arg_, 0); if (ret) break; }