Change the "offset too large" message to more generic wording

Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/5826)

(cherry picked from commit 1518c55a796b058eff01f3cbf177f4b726c01d7c)
This commit is contained in:
Bernd Edlinger 2018-04-02 10:54:52 +02:00
parent 82ff31d3e7
commit a3dbbe47f0

View File

@ -328,7 +328,7 @@ int MAIN(int argc, char **argv)
}
if (offset < 0 || offset >= num) {
BIO_printf(bio_err, "Error: offset too large\n");
BIO_printf(bio_err, "Error: offset out of range\n");
goto end;
}