The branch OpenSSL_1_0_2-stable has been updated
       via  a3dbbe47f09336484c8c874a0b1838266b51a8e8 (commit)
      from  82ff31d3e78413677023ac04a4a5ff94f2371a24 (commit)


- Log -----------------------------------------------------------------
commit a3dbbe47f09336484c8c874a0b1838266b51a8e8
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 6e7ed28..5b0def7 100644
--- a/apps/asn1pars.c
+++ b/apps/asn1pars.c
@@ -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;
     }
 
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to