From 1147a279785329a2eaeb01c0610c35fe835a62a6 Mon Sep 17 00:00:00 2001 From: glibg10b <56197853+glibg10b@users.noreply.github.com> Date: Thu, 18 Jul 2024 02:18:12 +0200 Subject: [PATCH] Fix printf typo for `zfs receive -cv` (#16295) Current output: > receiving correctivefull stream of a into b New output: > receiving corrective full stream of a into b Signed-off-by: glibg10b <56197853+glibg10b@users.noreply.github.com> Reviewed-by: Rob Norris Reviewed-by: Tino Reichardt Reviewed-by: Tony Hutter --- lib/libzfs/libzfs_sendrecv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libzfs/libzfs_sendrecv.c b/lib/libzfs/libzfs_sendrecv.c index 0370112c02..ee01ee9b21 100644 --- a/lib/libzfs/libzfs_sendrecv.c +++ b/lib/libzfs/libzfs_sendrecv.c @@ -4952,7 +4952,7 @@ zfs_receive_one(libzfs_handle_t *hdl, int infd, const char *tosnap, if (flags->verbose) { (void) printf("%s %s%s stream of %s into %s\n", flags->dryrun ? "would receive" : "receiving", - flags->heal ? " corrective" : "", + flags->heal ? "corrective " : "", drrb->drr_fromguid ? "incremental" : "full", drrb->drr_toname, destsnap); (void) fflush(stdout);