From: Alexander Clouter Date: Mon, 9 May 2011 10:15:16 +0000 (+0100) Subject: fix lower->tolower typo in policy.conf X-Git-Tag: release_2_1_11~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=77338ee450ee232da5e25b9a3bfe3f83d6310eaa;p=thirdparty%2Ffreeradius-server.git fix lower->tolower typo in policy.conf git commit abc96955 contains a typo that this patch fixes. As the module 'lower' does not exist calling this policy always results in a reject. Signed-off-by: Alexander Clouter --- diff --git a/raddb/policy.conf b/raddb/policy.conf index 599a5804502..73b195188a2 100644 --- a/raddb/policy.conf +++ b/raddb/policy.conf @@ -81,7 +81,7 @@ policy { } # Mixed case: reject - if (User-Name != "%{lower:%{User-Name}}") { + if (User-Name != "%{tolower:%{User-Name}}") { reject } }