Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correctly copy vendor specific attributes in copy_request_to_tunnel #1544

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions doc/ChangeLog
Expand Up @@ -20,6 +20,8 @@ FreeRADIUS 3.0.12 Mon 25 Jan 2016 14:00:00 EST urgency=medium
* Update aclocal tests for FreeBSD 10. Patches from
Mathieu Simon.
* Remove occasional hang in rlm_linelog.
* Correctly copy all vendor specific attributes when
PEAP/TTLS copy_request_to_tunnel is used.

FreeRADIUS 3.0.11 Mon 25 Jan 2016 14:00:00 EST urgency=medium
Feature improvements
Expand Down
2 changes: 1 addition & 1 deletion src/modules/rlm_eap/types/rlm_eap_peap/peap.c
Expand Up @@ -1268,7 +1268,7 @@ static int CC_HINT(nonnull) setup_fake_request(REQUEST *request, REQUEST *fake,
case PW_MESSAGE_AUTHENTICATOR:
case PW_EAP_MESSAGE:
case PW_STATE:
continue;
if (!vp->da->vendor) continue;

/*
* By default, copy it over.
Expand Down
2 changes: 1 addition & 1 deletion src/modules/rlm_eap/types/rlm_eap_ttls/ttls.c
Expand Up @@ -1131,7 +1131,7 @@ int eapttls_process(eap_handler_t *handler, tls_session_t *tls_session)
case PW_MESSAGE_AUTHENTICATOR:
case PW_EAP_MESSAGE:
case PW_STATE:
continue;
if (!vp->da->vendor) continue;

/*
* By default, copy it over.
Expand Down