Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 262245 Details for
Bug 354611
mail-mta/sendmail does not read multiple CRLs from the specified CRL file
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch to read multiple CRLs from confCRL file
sendmail-starttls-multi-crl.patch (text/plain), 631 bytes, created by
Daniel Keyhani
on 2011-02-12 15:18:07 UTC
(
hide
)
Description:
Patch to read multiple CRLs from confCRL file
Filename:
MIME Type:
Creator:
Daniel Keyhani
Created:
2011-02-12 15:18:07 UTC
Size:
631 bytes
patch
obsolete
>--- sendmail/tls.c.orig 2010-05-26 21:54:30.000000000 -0600 >+++ sendmail/tls.c 2010-05-26 21:54:36.000000000 -0600 >@@ -723,11 +723,12 @@ > { > if (BIO_read_filename(crl_file, CRLFile) >= 0) > { >- crl = PEM_read_bio_X509_CRL(crl_file, NULL, >- NULL, NULL); >+ while((crl = PEM_read_bio_X509_CRL(crl_file, NULL, NULL, NULL))) >+ { >+ X509_STORE_add_crl(store, crl); >+ X509_CRL_free(crl); >+ } > BIO_free(crl_file); >- X509_STORE_add_crl(store, crl); >- X509_CRL_free(crl); > X509_STORE_set_flags(store, > X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); > X509_STORE_set_verify_cb_func(store,
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 354611
: 262245