The branch OpenSSL_1_1_0-stable has been updated
       via  b854bb40364e96eac6239e07ad41292cd4de5a70 (commit)
      from  16df8dfe62e2fc4c8dd40a42b5abe280a63b7608 (commit)


- Log -----------------------------------------------------------------
commit b854bb40364e96eac6239e07ad41292cd4de5a70
Author: Bernd Edlinger <bernd.edlin...@hotmail.de>
Date:   Mon Apr 2 10:54:52 2018 +0200

    Change the "offset too large" message to more generic wording
    
    Reviewed-by: Rich Salz <rs...@openssl.org>
    Reviewed-by: Matthias St. Pierre <matthias.st.pie...@ncp-e.com>
    (Merged from https://github.com/openssl/openssl/pull/5826)
    
    (cherry picked from commit 1518c55a796b058eff01f3cbf177f4b726c01d7c)

-----------------------------------------------------------------------

Summary of changes:
 apps/asn1pars.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/asn1pars.c b/apps/asn1pars.c
index ed60ad1..44cf42e 100644
--- a/apps/asn1pars.c
+++ b/apps/asn1pars.c
@@ -245,7 +245,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;
     }
 
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to