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
9a565fe0
Commit
9a565fe0
authored
Nov 01, 2016
by
Linus Nordberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert partial fix for RADSECPROXY-69 (
47ccc9ff
).
This was potentially making things worse.
parent
47ccc9ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
10 deletions
+1
-10
ChangeLog
ChangeLog
+0
-5
radsecproxy.c
radsecproxy.c
+1
-5
No files found.
ChangeLog
View file @
9a565fe0
Unreleased 1.6.9
Bug fixes:
- Avoid creating another dynamic server when we already have one
working (RADSECPROXY-69). Patch by Fabian Mauchle.
2016-09-21 1.6.8
Bug fixes:
- Stop waiting on writable when reading a TCP socket.
...
...
radsecproxy.c
View file @
9a565fe0
...
...
@@ -777,14 +777,10 @@ int hasdynamicserver(struct list *srvconfs) {
for
(
entry
=
list_first
(
srvconfs
);
entry
;
entry
=
list_next
(
entry
))
#if defined ENABLE_EXPERIMENTAL_DYNDISC
/* NOTE: This should probably be servers->dynamiclookuparg,
* like in !ENABLE_EXPERIMENTAL_DYNDISC, but we're not
* touching this code any more. It shouldn't be used and it's
* going away. */
if
(((
struct
clsrvconf
*
)
entry
->
data
)
->
dynamiclookupcommand
||
((
struct
clsrvconf
*
)
entry
->
data
)
->
servers
->
in_use
)
#else
if
(((
struct
clsrvconf
*
)
entry
->
data
)
->
servers
->
dynamiclookuparg
)
if
(((
struct
clsrvconf
*
)
entry
->
data
)
->
dynamiclookupcommand
)
#endif
return
1
;
return
0
;
...
...
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