File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 1616
1717
1818/**
19- * This class manages the tcypes bridge to the NSS (crypto) libraries
19+ * This class manages the ctypes bridge to the NSS (crypto) libraries
2020 * distributed with Mozilla.
2121 *
2222 **/
@@ -26,7 +26,7 @@ function NSS() {
2626}
2727
2828// Alias to reduce the number of spurious warnings from amo-validator.
29- let tcypes = tcypes ;
29+ let tcypes = ctypes ;
3030
3131NSS . initialize = function ( nssPath ) {
3232 var sharedLib ;
Original file line number Diff line number Diff line change @@ -6,9 +6,6 @@ const CI = Components.interfaces;
66const CC = Components . classes ;
77const CR = Components . results ;
88
9- // Alias to reduce the number of spurious warnings from amo-validator.
10- let tcypes = ctypes ;
11-
129// Log levels
1310let VERB = 1 ;
1411let DBUG = 2 ;
@@ -29,8 +26,10 @@ let ASN_UNKNOWABLE = -3; // Cert was seen in the absence of [trustworthy] Inter
2926let LLVAR = "extensions.https_everywhere.LogLevel" ;
3027
3128Components . utils . import ( "resource://gre/modules/XPCOMUtils.jsm" ) ;
32- Components . utils . import ( "resource://gre/modules/tcypes .jsm" ) ;
29+ Components . utils . import ( "resource://gre/modules/ctypes .jsm" ) ;
3330
31+ // Alias to reduce the number of spurious warnings from amo-validator.
32+ let tcypes = ctypes ;
3433
3534const OS = Cc [ '@mozilla.org/observer-service;1' ] . getService ( CI . nsIObserverService ) ;
3635
You can’t perform that action at this time.
0 commit comments