summaryrefslogtreecommitdiffstats
path: root/security/manager/ssl/RemoteSecuritySettings.sys.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'security/manager/ssl/RemoteSecuritySettings.sys.mjs')
-rw-r--r--security/manager/ssl/RemoteSecuritySettings.sys.mjs2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/manager/ssl/RemoteSecuritySettings.sys.mjs b/security/manager/ssl/RemoteSecuritySettings.sys.mjs
index 7781aff9c4..f858118b37 100644
--- a/security/manager/ssl/RemoteSecuritySettings.sys.mjs
+++ b/security/manager/ssl/RemoteSecuritySettings.sys.mjs
@@ -450,7 +450,7 @@ class IntermediatePreloads {
try {
// split off the header and footer
certBase64 = dataAsString.split("-----")[2].replace(/\s/g, "");
- // get an array of bytes so we can use X509.jsm
+ // get an array of bytes so we can use X509.sys.mjs
let certBytes = stringToBytes(atob(certBase64));
let cert = new X509.Certificate();
cert.parse(certBytes);