mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 02:27:36 +03:00
Fix zfs "redact" misc issues
* zfs redact error messages do not end with newline character
* 30af21b0 inadvertently removed some ZFS_PROP comments
* man/zfs: zfs redact <redaction_snapshot> is not optional
Reviewed-by: Giuseppe Di Natale <guss80@gmail.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: George Melikov <mail@gmelikov.ru>
Signed-off-by: loli10K <ezomori.nozomu@gmail.com>
Closes #8988
This commit is contained in:
committed by
Brian Behlendorf
parent
341166c843
commit
3b5fe2c351
+9
-9
@@ -3620,7 +3620,7 @@ zfs_do_redact(int argc, char **argv)
|
||||
argv++;
|
||||
argc--;
|
||||
if (argc < 3) {
|
||||
(void) fprintf(stderr, gettext("too few arguments"));
|
||||
(void) fprintf(stderr, gettext("too few arguments\n"));
|
||||
usage(B_FALSE);
|
||||
}
|
||||
|
||||
@@ -3643,34 +3643,34 @@ zfs_do_redact(int argc, char **argv)
|
||||
break;
|
||||
case ENOENT:
|
||||
(void) fprintf(stderr,
|
||||
gettext("provided snapshot %s does not exist"), snap);
|
||||
gettext("provided snapshot %s does not exist\n"), snap);
|
||||
break;
|
||||
case EEXIST:
|
||||
(void) fprintf(stderr, gettext("specified redaction bookmark "
|
||||
"(%s) provided already exists"), bookname);
|
||||
"(%s) provided already exists\n"), bookname);
|
||||
break;
|
||||
case ENAMETOOLONG:
|
||||
(void) fprintf(stderr, gettext("provided bookmark name cannot "
|
||||
"be used, final name would be too long"));
|
||||
"be used, final name would be too long\n"));
|
||||
break;
|
||||
case E2BIG:
|
||||
(void) fprintf(stderr, gettext("too many redaction snapshots "
|
||||
"specified"));
|
||||
"specified\n"));
|
||||
break;
|
||||
case EINVAL:
|
||||
(void) fprintf(stderr, gettext("redaction snapshot must be "
|
||||
"descendent of snapshot being redacted"));
|
||||
"descendent of snapshot being redacted\n"));
|
||||
break;
|
||||
case EALREADY:
|
||||
(void) fprintf(stderr, gettext("attempted to redact redacted "
|
||||
"dataset or with respect to redacted dataset"));
|
||||
"dataset or with respect to redacted dataset\n"));
|
||||
break;
|
||||
case ENOTSUP:
|
||||
(void) fprintf(stderr, gettext("redaction bookmarks feature "
|
||||
"not enabled"));
|
||||
"not enabled\n"));
|
||||
break;
|
||||
default:
|
||||
(void) fprintf(stderr, gettext("internal error: %s"),
|
||||
(void) fprintf(stderr, gettext("internal error: %s\n"),
|
||||
strerror(errno));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user