Skip to content

Commit 2cccbac

Browse files
authored
Fix typos in zpool_do_scrub() error messages (#17028)
Sponsored-by: Wasabi Technology, Inc. Sponsored-by: Klara, Inc. Signed-off-by: Mateusz Piotrowski <[email protected]> Reviewed-by: Alexander Motin <[email protected]> Reviewed-by: George Amanakis <[email protected]> Reviewed-by: George Melikov <[email protected]> Reviewed-by: Tony Hutter <[email protected]>
1 parent 0be1da2 commit 2cccbac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cmd/zpool/zpool_main.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8481,19 +8481,19 @@ zpool_do_scrub(int argc, char **argv)
84818481

84828482
if (is_pause && is_stop) {
84838483
(void) fprintf(stderr, gettext("invalid option "
8484-
"combination :-s and -p are mutually exclusive\n"));
8484+
"combination: -s and -p are mutually exclusive\n"));
84858485
usage(B_FALSE);
84868486
} else if (is_pause && is_txg_continue) {
84878487
(void) fprintf(stderr, gettext("invalid option "
8488-
"combination :-p and -C are mutually exclusive\n"));
8488+
"combination: -p and -C are mutually exclusive\n"));
84898489
usage(B_FALSE);
84908490
} else if (is_stop && is_txg_continue) {
84918491
(void) fprintf(stderr, gettext("invalid option "
8492-
"combination :-s and -C are mutually exclusive\n"));
8492+
"combination: -s and -C are mutually exclusive\n"));
84938493
usage(B_FALSE);
84948494
} else if (is_error_scrub && is_txg_continue) {
84958495
(void) fprintf(stderr, gettext("invalid option "
8496-
"combination :-e and -C are mutually exclusive\n"));
8496+
"combination: -e and -C are mutually exclusive\n"));
84978497
usage(B_FALSE);
84988498
} else {
84998499
if (is_error_scrub)

0 commit comments

Comments
 (0)