summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2019-10-18 18:55:10 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2019-10-18 18:55:10 +0200
commit38a8306e32237b6a51541a58ea21ac477ab5503e (patch)
tree1a09f0a0239a134e9032c2325c7efdeb319a39d8 /apps/user_ldap
parent64f1ad9381672619c8d449ef32377b0fa0c11eff (diff)
downloadnextcloud-server-38a8306e32237b6a51541a58ea21ac477ab5503e.tar.gz
nextcloud-server-38a8306e32237b6a51541a58ea21ac477ab5503e.zip
treat LDAP error 50 as auth issue, prevents lost server connection errors
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/lib/Connection.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/Connection.php b/apps/user_ldap/lib/Connection.php
index 35770f082fa..db4362a9eb2 100644
--- a/apps/user_ldap/lib/Connection.php
+++ b/apps/user_ldap/lib/Connection.php
@@ -675,7 +675,8 @@ class Connection extends LDAPUtility {
ILogger::WARN);
// Set to failure mode, if LDAP error code is not LDAP_SUCCESS or LDAP_INVALID_CREDENTIALS
- if($errno !== 0x00 && $errno !== 0x31) {
+ // or (needed for Apple Open Directory:) LDAP_INSUFFICIENT_ACCESS
+ if($errno !== 0 && $errno !== 49 && $errno !== 50) {
$this->ldapConnectionRes = null;
}