From 5598feda6dc5786a72cf5e536b5e35c7a0bb1395 Mon Sep 17 00:00:00 2001 From: Thomas Pressnell Date: Mon, 12 Jul 2021 16:32:06 +0100 Subject: [PATCH] use getter --- lib/server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/server.js b/lib/server.js index cbf110b..c9f6aae 100644 --- a/lib/server.js +++ b/lib/server.js @@ -408,7 +408,7 @@ function Server (options) { if (req.protocolOp === Protocol.LDAP_REQ_BIND && res.status === 0) { // 0 length == anonymous bind - if (req.dn.rdns.length === 0 && req.credentials === '') { + if (req.dn.length === 0 && req.credentials === '') { conn.ldap.bindDN = new DN([new dn.RDN({ cn: 'anonymous' })]) } else { conn.ldap.bindDN = req.dn