From 673cdf63c1afff1d649df4ff31366a0c8264d182 Mon Sep 17 00:00:00 2001 From: olavmrk Date: Thu, 12 Jan 2012 13:30:50 +0000 Subject: Move discovery response endpoint to "login" instead of "auth". We now have a "login" endpoint that can be used for triggering authentication. Make the discovery service send its response to that page. git-svn-id: https://modmellon.googlecode.com/svn/trunk@147 a716ebb1-153a-0410-b759-cfb97c6a1b53 --- auth_mellon_handler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'auth_mellon_handler.c') diff --git a/auth_mellon_handler.c b/auth_mellon_handler.c index 10305ae..2c752a6 100644 --- a/auth_mellon_handler.c +++ b/auth_mellon_handler.c @@ -2524,7 +2524,7 @@ static int am_auth_new_ticket(request_rec *r) /* If discovery URL already has a ? we append a & */ sep = (strchr(cfg->discovery_url, '?')) ? "&" : "?"; - return_url = apr_psprintf(r->pool, "%sauth?ReturnTo=%s", + return_url = apr_psprintf(r->pool, "%slogin?ReturnTo=%s", endpoint, am_urlencode(r->pool, relay_state)); ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, -- cgit