From: Alan T. DeKok Date: Thu, 29 Jun 2017 17:09:00 +0000 (-0400) Subject: remove check for Proxy-To-Realm X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=955ff00619e9cc0fe282b33ec9120d815426e2ce;p=thirdparty%2Ffreeradius-server.git remove check for Proxy-To-Realm it should now be Auth-Type := proxy... --- diff --git a/src/modules/rlm_pap/rlm_pap.c b/src/modules/rlm_pap/rlm_pap.c index 9af14f3ffdc..26b37746017 100644 --- a/src/modules/rlm_pap/rlm_pap.c +++ b/src/modules/rlm_pap/rlm_pap.c @@ -427,19 +427,6 @@ static rlm_rcode_t CC_HINT(nonnull) mod_authorize(void *instance, UNUSED void *t found_pw = true; break; - /* - * If it's proxied somewhere, don't complain - * about not having passwords or Auth-Type. - */ - case FR_PROXY_TO_REALM: - { - REALM *realm = realm_find(vp->vp_strvalue); - if (realm && realm->auth_pool) { - return RLM_MODULE_NOOP; - } - break; - } - case FR_AUTH_TYPE: auth_type = true;