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


- Log -----------------------------------------------------------------
commit a465ca7841409522419954f28f4847b2423c75f3
Author: Viktor Dukhovni <[email protected]>
Date:   Sun Dec 13 20:25:16 2015 -0500

    Fix option value parsing in crl2pkcs7 -certfile
    
    Reviewed-by: Rich Saltz <[email protected]>

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

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;
             }
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to