From: Leonhard Knauff Date: Mon, 8 Aug 2016 20:48:20 +0000 (+0100) Subject: Radius: Fix authentication for Radius libraries that return REJECT_RC. Bug 1850 X-Git-Tag: exim-4_88_RC1~42 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/860cdda24cec1d6af456cb3406d84e6dc21981f9 Radius: Fix authentication for Radius libraries that return REJECT_RC. Bug 1850 --- diff --git a/doc/doc-txt/ChangeLog b/doc/doc-txt/ChangeLog index 148329505..60a4e4ea4 100644 --- a/doc/doc-txt/ChangeLog +++ b/doc/doc-txt/ChangeLog @@ -71,6 +71,8 @@ JH/17 Fakereject: previously logged as a norml message arrival "<="; now JH/18 Bug 1867: make the fail_defer_domains option on a dnslookup router work for missing MX records. Previously it only worked for missing A records. +JH/19 Buf 1850: support Radius libraries that return REJECT_RC + Exim version 4.87 ----------------- diff --git a/src/src/auths/call_radius.c b/src/src/auths/call_radius.c index d93e6a94a..c3637436d 100644 --- a/src/src/auths/call_radius.c +++ b/src/src/auths/call_radius.c @@ -165,6 +165,7 @@ switch (result) case OK_RC: return OK; + case REJECT_RC: case ERROR_RC: return FAIL;