mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 07:47:32 +09:00
Replace NSS with Pale Moon's
This commit is contained in:
parent
ff1e5e48bf
commit
8c2e376f94
2870 changed files with 1762232 additions and 1374220 deletions
|
|
@ -28,10 +28,6 @@
|
|||
#include "nss.h"
|
||||
#include "ssl.h"
|
||||
|
||||
#ifndef PORT_Sprintf
|
||||
#define PORT_Sprintf sprintf
|
||||
#endif
|
||||
|
||||
#ifndef PORT_Strstr
|
||||
#define PORT_Strstr strstr
|
||||
#endif
|
||||
|
|
@ -295,10 +291,11 @@ printSecurityInfo(PRFileDesc *fd)
|
|||
&suite, sizeof suite);
|
||||
if (result == SECSuccess) {
|
||||
FPRINTF(stderr,
|
||||
"strsclnt: SSL version %d.%d using %d-bit %s with %d-bit %s MAC\n",
|
||||
"strsclnt: SSL version %d.%d using %d-bit %s with %d-bit %s MAC%s\n",
|
||||
channel.protocolVersion >> 8, channel.protocolVersion & 0xff,
|
||||
suite.effectiveKeyBits, suite.symCipherName,
|
||||
suite.macBits, suite.macAlgorithmName);
|
||||
suite.macBits, suite.macAlgorithmName,
|
||||
channel.isFIPS ? " FIPS" : "");
|
||||
FPRINTF(stderr,
|
||||
"strsclnt: Server Auth: %d-bit %s, Key Exchange: %d-bit %s\n"
|
||||
" Compression: %s\n",
|
||||
|
|
@ -549,7 +546,7 @@ lockedVars_WaitForDone(lockedVars *lv)
|
|||
}
|
||||
|
||||
int /* returns count */
|
||||
lockedVars_AddToCount(lockedVars *lv, int addend)
|
||||
lockedVars_AddToCount(lockedVars *lv, int addend)
|
||||
{
|
||||
int rv;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue