https://bugs.exim.org/show_bug.cgi?id=1850
Git Commit <git@???> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |git@???
--- Comment #6 from Git Commit <git@???> ---
Git commit:
http://git.exim.org/exim.git/commitdiff/860cdda24cec1d6af456cb3406d84e6dc21981f9
commit 860cdda24cec1d6af456cb3406d84e6dc21981f9
Author: Leonhard Knauff <lk@???>
AuthorDate: Mon Aug 8 21:48:20 2016 +0100
Commit: Jeremy Harris <jgh146exb@???>
CommitDate: Mon Aug 8 21:52:00 2016 +0100
Radius: Fix authentication for Radius libraries that return REJECT_RC. Bug
1850
---
doc/doc-txt/ChangeLog | 2 ++
src/src/auths/call_radius.c | 1 +
2 files changed, 3 insertions(+)
diff --git a/doc/doc-txt/ChangeLog b/doc/doc-txt/ChangeLog
index 1483295..60a4e4e 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 d93e6a9..c363743 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;
--
You are receiving this mail because:
You are on the CC list for the bug.