From: Matt Benjamin Date: Mon, 19 Sep 2016 20:54:24 +0000 (-0400) Subject: fix test_rgw_ldap.cc for search filter X-Git-Tag: v11.0.1~173 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=8328daa81a823dc42dd730c6e744a83231d30843;p=ceph.git fix test_rgw_ldap.cc for search filter Signed-off-by: Matt Benjamin --- diff --git a/src/test/test_rgw_ldap.cc b/src/test/test_rgw_ldap.cc index 8a08d8fd5246..7a6c5a8e6118 100644 --- a/src/test/test_rgw_ldap.cc +++ b/src/test/test_rgw_ldap.cc @@ -45,10 +45,11 @@ namespace { string ldap_binddn = "uid=admin,cn=users,cn=accounts,dc=rgw,dc=com"; string ldap_bindpw = "supersecret"; string ldap_searchdn = "cn=users,cn=accounts,dc=rgw,dc=com"; + string ldap_searchfilter = ""; string ldap_dnattr = "uid"; rgw::LDAPHelper ldh(ldap_uri, ldap_binddn, ldap_bindpw, ldap_searchdn, - ldap_dnattr); + ldap_searchfilter, ldap_dnattr); } /* namespace */