diff options
Diffstat (limited to 'lib/libzfs/libzfs_dataset.c')
-rw-r--r-- | lib/libzfs/libzfs_dataset.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libzfs/libzfs_dataset.c b/lib/libzfs/libzfs_dataset.c index 8ec5b7af4..1a8c294d2 100644 --- a/lib/libzfs/libzfs_dataset.c +++ b/lib/libzfs/libzfs_dataset.c @@ -1418,16 +1418,16 @@ badlabel: if (crypt == ZIO_CRYPT_OFF && strcmp(strval, "none") != 0) { zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, - "keylocation must not be 'none' " - "for encrypted datasets")); + "keylocation must be 'none' " + "for unencrypted datasets")); (void) zfs_error(hdl, EZFS_BADPROP, errbuf); goto error; } else if (crypt != ZIO_CRYPT_OFF && strcmp(strval, "none") == 0) { zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, - "keylocation must be 'none' " - "for unencrypted datasets")); + "keylocation must not be 'none' " + "for encrypted datasets")); (void) zfs_error(hdl, EZFS_BADPROP, errbuf); goto error; |