From 2278381ce2a820afe76dd9650298858d7037a01b Mon Sep 17 00:00:00 2001 From: Patrik Greco Date: Fri, 24 Jan 2014 19:19:34 +0100 Subject: Fix error message in zpios The chunksize must always be strictly smaller than the regionsize. Signed-off-by: Andrew Uselton Signed-off-by: Brian Behlendorf Closes #2072 --- cmd/zpios/zpios_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/zpios/zpios_main.c b/cmd/zpios/zpios_main.c index b1091abe2..971a886a3 100644 --- a/cmd/zpios/zpios_main.c +++ b/cmd/zpios/zpios_main.c @@ -568,8 +568,8 @@ run_region_sizes(cmd_args_t *args) while (rc == 0 && get_next(&args->current_S, &args->S)) { if (args->current_S < args->current_C) { - fprintf(stderr, "Error: in any run chunksize can " - "not be smaller than regionsize.\n"); + fprintf(stderr, "Error: in any run chunksize must " + "be strictly smaller than regionsize.\n"); return (EINVAL); } -- cgit v1.2.3