Re: [openssl-dev] [openssl.org #3796] doc for verify does misspell -CRLfile option

2015-04-12 Thread Blumenthal, Uri - 0553 - MITLL
Good idea, IMHO. -- Regards, Uri BlumenthalVoice: (781) 981-1638 Cyber Systems and Technology Fax: (781) 981-0186 MIT Lincoln LaboratoryCell: (339) 223-5363 244 Wood Street, Lexington, MA 02420-9185 Web: http://www.ll.mit.edu/CST/ MIT LL

Re: [openssl-dev] [openssl.org #3796] doc for verify does misspell -CRLfile option

2015-04-12 Thread Salz, Rich
I'm thinking of make the flags to the openssl apps be case-insensitive. Thoughts? Thanks for the patch. ___ openssl-dev mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev

[openssl-dev] [openssl.org #3788] Bug: Certificate expiration date error for 9000+ days

2015-04-12 Thread Stephen Henson via RT
OK thanks for the update, ticket resolved. Steve. -- Dr Stephen N. Henson. OpenSSL project core developer. Commercial tech support now available see: http://www.openssl.org ___ openssl-dev mailing list To unsubscribe:

[openssl-dev] [openssl.org #3798] null check in x509_lu.c:cleanup

2015-04-12 Thread Salz, Rich via RT
around line 218 add the if check: static void cleanup(X509_OBJECT *a) { + if (!a) +return; . ___ openssl-dev mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev

[openssl-dev] [openssl.org #3799] add null to check X509_STORE_CTX_free

2015-04-12 Thread Salz, Rich via RT
Around line 2226 add the NULL check. void X509_STORE_CTX_free(X509_STORE_CTX *ctx) { + if (!ctx) + return; ___ openssl-dev mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev