summaryrefslogtreecommitdiffstats
path: root/auth_mellon_handler.c
diff options
context:
space:
mode:
authorbenjamin.dauvergne <benjamin.dauvergne@a716ebb1-153a-0410-b759-cfb97c6a1b53>2010-09-28 15:54:33 +0000
committerbenjamin.dauvergne <benjamin.dauvergne@a716ebb1-153a-0410-b759-cfb97c6a1b53>2010-09-28 15:54:33 +0000
commit6bb1e530d1437eaaa0cf44bd1c3cd34b10289d42 (patch)
tree2defb399db6d85c2b061c58d2a4fcb7401f761c8 /auth_mellon_handler.c
parent5bb90242ca89ddd47fd25f93688822ee37df5c2a (diff)
downloadmod_auth_mellon-6bb1e530d1437eaaa0cf44bd1c3cd34b10289d42.tar.gz
mod_auth_mellon-6bb1e530d1437eaaa0cf44bd1c3cd34b10289d42.tar.xz
mod_auth_mellon-6bb1e530d1437eaaa0cf44bd1c3cd34b10289d42.zip
Report the received Recipient for error on SubjectConfirmationData
git-svn-id: https://modmellon.googlecode.com/svn/trunk@109 a716ebb1-153a-0410-b759-cfb97c6a1b53
Diffstat (limited to 'auth_mellon_handler.c')
-rw-r--r--auth_mellon_handler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/auth_mellon_handler.c b/auth_mellon_handler.c
index 80abf33..02b996b 100644
--- a/auth_mellon_handler.c
+++ b/auth_mellon_handler.c
@@ -1210,8 +1210,8 @@ static int am_validate_subject(request_rec *r, LassoSaml2Assertion *assertion,
if (scd->Recipient) {
if (strcmp(scd->Recipient, url)) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
- "Wrong Recipient in SubjectConfirmationData. Current URL is: %s",
- url);
+ "Wrong Recipient in SubjectConfirmationData. Current URL is: %s, Recipient is %s",
+ url, scd->Recipient);
return HTTP_BAD_REQUEST;
}
}