GUACAMOLE-101: Corrections to comments for proper LDAP filter syntax.
Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/5c768384 Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/5c768384 Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/5c768384 Branch: refs/heads/master Commit: 5c768384bc9b2a92b9196aedc930ed0d536b5994 Parents: c5fe3d1 Author: Nick Couchman <[email protected]> Authored: Tue Mar 28 07:41:52 2017 -0400 Committer: Nick Couchman <[email protected]> Committed: Tue Mar 28 07:56:47 2017 -0400 ---------------------------------------------------------------------- .../org/apache/guacamole/auth/ldap/ConfigurationService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/5c768384/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ConfigurationService.java ---------------------------------------------------------------------- diff --git a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ConfigurationService.java b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ConfigurationService.java index 2131797..eec0324 100644 --- a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ConfigurationService.java +++ b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ConfigurationService.java @@ -275,12 +275,12 @@ public class ConfigurationService { /** * Returns the search filter that should be used when querying the * LDAP server for Guacamole users. If no filter is specified, - * a default of objectClass=* is returned. + * a default of "(objectClass=*)" is returned. * * @return * The search filter that should be used when querying the * LDAP server for users that are valid in Guacamole, or - * objectClass=* if not specified. + * "(objectClass=*)" if not specified. * * @throws GuacamoleException * If guacamole.properties cannot be parsed.
