aboutsummaryrefslogtreecommitdiffstats
path: root/lib/libzfs
diff options
context:
space:
mode:
authorTom Caputi <[email protected]>2019-03-19 13:22:39 -0400
committerBrian Behlendorf <[email protected]>2019-03-19 10:22:39 -0700
commit73c25a78e6b420ff37d703d2e1911c17cf449caa (patch)
treea23feb866ebbdc611f381896efafef318145bde5 /lib/libzfs
parentca6c7a94c994b9979824f8fccf1c6ddb00ee5598 (diff)
Add space in error message
This patch simply adds a missing space in the ZFS_ERR_FROM_IVSET_GUID_MISSING error message. Reviewed-by: Richard Laager <[email protected]> Reviewed-by: George Melikov <[email protected]> Reviewed-by: Don Brady <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Tom Caputi <[email protected]> Closes #8514
Diffstat (limited to 'lib/libzfs')
-rw-r--r--lib/libzfs/libzfs_sendrecv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libzfs/libzfs_sendrecv.c b/lib/libzfs/libzfs_sendrecv.c
index c140e5d30..f76900a9c 100644
--- a/lib/libzfs/libzfs_sendrecv.c
+++ b/lib/libzfs/libzfs_sendrecv.c
@@ -4394,8 +4394,8 @@ zfs_receive_one(libzfs_handle_t *hdl, int infd, const char *tosnap,
break;
case ZFS_ERR_FROM_IVSET_GUID_MISSING:
zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
- "IV set guid missing. See errata %u at"
- "http://zfsonlinux.org/msg/ZFS-8000-ER"),
+ "IV set guid missing. See errata %u at "
+ "http://zfsonlinux.org/msg/ZFS-8000-ER."),
ZPOOL_ERRATA_ZOL_8308_ENCRYPTION);
(void) zfs_error(hdl, EZFS_BADSTREAM, errbuf);
break;