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
aa4a5a8c
Commit
aa4a5a8c
authored
Jan 14, 2015
by
Linus Nordberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Have rewriteIn for servers use the correct config section.
Conflicts: ChangeLog
parent
d22b2a2d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
ChangeLog
ChangeLog
+7
-0
radsecproxy.c
radsecproxy.c
+3
-2
No files found.
ChangeLog
View file @
aa4a5a8c
Unreleased 1.6.6-dev
Bug fixes:
- Have rewriteIn for servers use the correct config section. We
used to apply rewriteIn using the rewrite block of the client
rather than the server. Patch by Fabian Mauchle. Fixes
RADSECPROXY-59.
2013-09-06 1.6.5
Bug fixes:
- Fix a crash bug introduced in 1.6.4. Fixes RADSECPROXY-53,
...
...
radsecproxy.c
View file @
aa4a5a8c
...
...
@@ -1638,9 +1638,8 @@ void replyh(struct server *server, unsigned char *buf) {
}
gettimeofday
(
&
server
->
lastreply
,
NULL
);
from
=
rqout
->
rq
->
from
;
if
(
server
->
conf
->
rewritein
&&
!
dorewrite
(
msg
,
from
->
conf
->
rewritein
))
{
if
(
server
->
conf
->
rewritein
&&
!
dorewrite
(
msg
,
server
->
conf
->
rewritein
))
{
debug
(
DBG_INFO
,
"replyh: rewritein failed"
);
goto
errunlock
;
}
...
...
@@ -1651,6 +1650,8 @@ void replyh(struct server *server, unsigned char *buf) {
goto
errunlock
;
}
from
=
rqout
->
rq
->
from
;
/* MS MPPE */
for
(
node
=
list_first
(
msg
->
attrs
);
node
;
node
=
list_next
(
node
))
{
attr
=
(
struct
tlv
*
)
node
->
data
;
...
...
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