[openssl-commits] [openssl] master update

Viktor Dukhovni viktor at openssl.org
Mon Dec 14 02:32:03 UTC 2015


The branch master has been updated
       via  a465ca7841409522419954f28f4847b2423c75f3 (commit)
      from  7eff6aa0d627c2bdbce0493bdb029e477a8caf1e (commit)


- Log -----------------------------------------------------------------
commit a465ca7841409522419954f28f4847b2423c75f3
Author: Viktor Dukhovni <openssl-users at dukhovni.org>
Date:   Sun Dec 13 20:25:16 2015 -0500

    Fix option value parsing in crl2pkcs7 -certfile
    
    Reviewed-by: Rich Saltz <rsalz at openssl.org>

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

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

diff --git a/apps/crl2p7.c b/apps/crl2p7.c
index 930875a..74bb893 100644
--- a/apps/crl2p7.c
+++ b/apps/crl2p7.c
@@ -138,7 +138,7 @@ int crl2pkcs7_main(int argc, char **argv)
             if ((certflst == NULL)
                 && (certflst = sk_OPENSSL_STRING_new_null()) == NULL)
                 goto end;
-            if (!sk_OPENSSL_STRING_push(certflst, *(++argv))) {
+            if (!sk_OPENSSL_STRING_push(certflst, opt_arg())) {
                 sk_OPENSSL_STRING_free(certflst);
                 goto end;
             }


More information about the openssl-commits mailing list