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)
This commit is contained in:
Bernd Edlinger 2018-04-02 10:54:52 +02:00
parent 21db0e1afd
commit 1518c55a79

View File

@ -259,7 +259,7 @@ int asn1parse_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;
}