Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
eduroam
radsecproxy
Commits
aa4a5a8c
Commit
aa4a5a8c
authored
Jan 14, 2015
by
Linus Nordberg
Browse files
Have rewriteIn for servers use the correct config section.
Conflicts: ChangeLog
parent
d22b2a2d
Changes
2
Hide whitespace changes
Inline
Side-by-side
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