From: Arran Cudbard-Bell Date: Wed, 8 Jul 2015 04:10:02 +0000 (-0400) Subject: bind_dn references need to be double quoted else they're not expanded X-Git-Tag: release_3_0_9~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b7788150f86ec9239ea803244c61d4dfd73e402;p=thirdparty%2Ffreeradius-server.git bind_dn references need to be double quoted else they're not expanded --- diff --git a/raddb/mods-available/ldap b/raddb/mods-available/ldap index 3d58baa0ccc..a4532c83127 100644 --- a/raddb/mods-available/ldap +++ b/raddb/mods-available/ldap @@ -150,7 +150,7 @@ ldap { # user { # Where to start searching in the tree for users - base_dn = '${..base_dn}' + base_dn = "${..base_dn}" # Filter for user objects, should be specific enough # to identify a single user object. @@ -226,7 +226,7 @@ ldap { # group { # Where to start searching in the tree for groups - base_dn = '${..base_dn}' + base_dn = "${..base_dn}" # Filter for group objects, should match all available # group objects a user might be a member of. @@ -301,7 +301,7 @@ ldap { # client { # Where to start searching in the tree for clients - base_dn = '${..base_dn}' + base_dn = "${..base_dn}" # # Filter to match client objects