Skip to content

Commit 61b908a

Browse files
0mpPaul Dagnelie
authored andcommitted
Fix typos in zpool_do_scrub() error messages (openzfs#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 e61dd77 commit 61b908a

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
@@ -8443,19 +8443,19 @@ zpool_do_scrub(int argc, char **argv)
84438443

84448444
if (is_pause && is_stop) {
84458445
(void) fprintf(stderr, gettext("invalid option "
8446-
"combination :-s and -p are mutually exclusive\n"));
8446+
"combination: -s and -p are mutually exclusive\n"));
84478447
usage(B_FALSE);
84488448
} else if (is_pause && is_txg_continue) {
84498449
(void) fprintf(stderr, gettext("invalid option "
8450-
"combination :-p and -C are mutually exclusive\n"));
8450+
"combination: -p and -C are mutually exclusive\n"));
84518451
usage(B_FALSE);
84528452
} else if (is_stop && is_txg_continue) {
84538453
(void) fprintf(stderr, gettext("invalid option "
8454-
"combination :-s and -C are mutually exclusive\n"));
8454+
"combination: -s and -C are mutually exclusive\n"));
84558455
usage(B_FALSE);
84568456
} else if (is_error_scrub && is_txg_continue) {
84578457
(void) fprintf(stderr, gettext("invalid option "
8458-
"combination :-e and -C are mutually exclusive\n"));
8458+
"combination: -e and -C are mutually exclusive\n"));
84598459
usage(B_FALSE);
84608460
} else {
84618461
if (is_error_scrub)

0 commit comments

Comments
 (0)