Comparing version 0.3.3 to 0.3.4
@@ -805,3 +805,3 @@ // Copyright 2011 Mark Cavage, Inc. All rights reserved. | ||
c.ldap.connected = true; | ||
c.ldap.id += ':' + c.fd; | ||
c.ldap.id += c.fd ? (':' + c.fd) : ''; | ||
c.emit('connect', true); | ||
@@ -823,3 +823,3 @@ }); | ||
c.ldap = { | ||
id: connectOpts.socketPath || self.url.hostname, | ||
id: self.url ? self.url.hostname : connectOpts.socketPath, | ||
messageID: 0, | ||
@@ -840,3 +840,3 @@ messages: {} | ||
c.ldap.connected = true; | ||
c.ldap.id += ':' + c.fd; | ||
c.ldap.id += c.fd ? (':' + c.fd) : ''; | ||
self.emit('connect', c.ldap.id); | ||
@@ -843,0 +843,0 @@ }); |
@@ -6,3 +6,3 @@ { | ||
"description": "LDAP client and server APIs", | ||
"version": "0.3.3", | ||
"version": "0.3.4", | ||
"repository": { | ||
@@ -9,0 +9,0 @@ "type": "git", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
449252