summaryrefslogtreecommitdiffstats
path: root/extensions/pref
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:35:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:35:29 +0000
commit59203c63bb777a3bacec32fb8830fba33540e809 (patch)
tree58298e711c0ff0575818c30485b44a2f21bf28a0 /extensions/pref
parentAdding upstream version 126.0.1. (diff)
downloadfirefox-59203c63bb777a3bacec32fb8830fba33540e809.tar.xz
firefox-59203c63bb777a3bacec32fb8830fba33540e809.zip
Adding upstream version 127.0.upstream/127.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'extensions/pref')
-rw-r--r--extensions/pref/autoconfig/src/prefcalls.js14
1 files changed, 4 insertions, 10 deletions
diff --git a/extensions/pref/autoconfig/src/prefcalls.js b/extensions/pref/autoconfig/src/prefcalls.js
index b66e5df898..fcd0554e95 100644
--- a/extensions/pref/autoconfig/src/prefcalls.js
+++ b/extensions/pref/autoconfig/src/prefcalls.js
@@ -8,7 +8,6 @@
const LDAPSyncQueryContractID = "@mozilla.org/ldapsyncquery;1";
-var gVersion;
var gIsUTF8;
function getPrefBranch() {
@@ -111,8 +110,8 @@ function clearPref(prefName) {
} catch (e) {}
}
-function setLDAPVersion(version) {
- gVersion = version;
+function setLDAPVersion(_version) {
+ // No longer implemented, but still here to avoid breaking anything.
}
function getLDAPAttributes(host, base, filter, attribs, isSecure) {
@@ -138,16 +137,11 @@ function getLDAPAttributes(host, base, filter, attribs, isSecure) {
// eslint-disable-next-line mozilla/valid-ci-uses
Ci.nsILDAPSyncQuery
);
- // default to LDAP v3
- if (!gVersion) {
- // eslint-disable-next-line mozilla/valid-ci-uses
- gVersion = Ci.nsILDAPConnection.VERSION3;
- }
// user supplied method
if ("processLDAPValues" in gSandbox) {
- gSandbox.processLDAPValues(ldapquery.getQueryResults(url, gVersion));
+ gSandbox.processLDAPValues(ldapquery.getQueryResults(url));
} else {
- processLDAPValues(ldapquery.getQueryResults(url, gVersion));
+ processLDAPValues(ldapquery.getQueryResults(url));
}
} catch (e) {
displayError("getLDAPAttributes", e);