Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
R
radsecproxy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
eduroam
radsecproxy
Commits
4fa79aa7
Commit
4fa79aa7
authored
Mar 24, 2017
by
Fabian Mauchle
Committed by
Linus Nordberg
Aug 01, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
create new cert_store before reloading CAs and CRLs
Conflicts: ChangeLog
parent
9a565fe0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
ChangeLog
ChangeLog
+4
-0
tlscommon.c
tlscommon.c
+1
-0
No files found.
ChangeLog
View file @
4fa79aa7
2017-10-?? 1.6.9
Bug fixes:
- Completely reload CAs and CRLs with cacheExpiry (RADSECPROXY-50).
2016-09-21 1.6.8
Bug fixes:
- Stop waiting on writable when reading a TCP socket.
...
...
tlscommon.c
View file @
4fa79aa7
...
...
@@ -158,6 +158,7 @@ static int tlsaddcacrl(SSL_CTX *ctx, struct tls *conf) {
X509_STORE
*
x509_s
;
unsigned
long
error
;
SSL_CTX_set_cert_store
(
ctx
,
X509_STORE_new
());
if
(
!
SSL_CTX_load_verify_locations
(
ctx
,
conf
->
cacertfile
,
conf
->
cacertpath
))
{
while
((
error
=
ERR_get_error
()))
debug
(
DBG_ERR
,
"SSL: %s"
,
ERR_error_string
(
error
,
NULL
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment