aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorglibg10b <[email protected]>2024-07-18 02:18:12 +0200
committerGitHub <[email protected]>2024-07-17 17:18:12 -0700
commit1147a279785329a2eaeb01c0610c35fe835a62a6 (patch)
tree524901bfede814097acbba429dc9bc3bfe5477b2
parentab6d9bd89a87ed65c83db241fb476e81d88e166f (diff)
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 <[email protected]> Reviewed-by: Rob Norris <[email protected]> Reviewed-by: Tino Reichardt <[email protected]> Reviewed-by: Tony Hutter <[email protected]>
-rw-r--r--lib/libzfs/libzfs_sendrecv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libzfs/libzfs_sendrecv.c b/lib/libzfs/libzfs_sendrecv.c
index 0370112c0..ee01ee9b2 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);