From 6bb1e530d1437eaaa0cf44bd1c3cd34b10289d42 Mon Sep 17 00:00:00 2001 From: "benjamin.dauvergne" Date: Tue, 28 Sep 2010 15:54:33 +0000 Subject: Report the received Recipient for error on SubjectConfirmationData git-svn-id: https://modmellon.googlecode.com/svn/trunk@109 a716ebb1-153a-0410-b759-cfb97c6a1b53 --- auth_mellon_handler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'auth_mellon_handler.c') 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; } } -- cgit