Skip to content

Commit

Permalink
Bug 1733374 - land NSS de3db3a55aef UPGRADE_NSS_RELEASE, r=bbeurdouche
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisjackson committed Oct 18, 2021
1 parent fd5c145 commit 2858bd1
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion build/moz.configure/nss.configure
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ system_lib_option("--with-system-nss", help="Use system NSS")
imply_option("--with-system-nspr", True, when="--with-system-nss")

nss_pkg = pkg_check_modules(
"NSS", "nss >= 3.71", when="--with-system-nss", config=False
"NSS", "nss >= 3.72", when="--with-system-nss", config=False
)

set_config("MOZ_SYSTEM_NSS", True, when="--with-system-nss")
Expand Down
2 changes: 1 addition & 1 deletion security/nss/TAG-INFO
Original file line number Diff line number Diff line change
@@ -1 +1 @@
NSS_3_71_RTM
de3db3a55aef
2 changes: 1 addition & 1 deletion security/nss/automation/abi-check/previous-nss-release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
NSS_3_70_BRANCH
NSS_3_71_BRANCH
1 change: 1 addition & 0 deletions security/nss/coreconf/coreconf.dep
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@
*/

#error "Do not include this header file."

6 changes: 3 additions & 3 deletions security/nss/lib/nss/nss.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
* The format of the version string should be
* "<major version>.<minor version>[.<patch level>[.<build number>]][ <ECC>][ <Beta>]"
*/
#define NSS_VERSION "3.71" _NSS_CUSTOMIZED
#define NSS_VERSION "3.72" _NSS_CUSTOMIZED " Beta"
#define NSS_VMAJOR 3
#define NSS_VMINOR 71
#define NSS_VMINOR 72
#define NSS_VPATCH 0
#define NSS_VBUILD 0
#define NSS_BETA PR_FALSE
#define NSS_BETA PR_TRUE

#ifndef RC_INVOKED

Expand Down
2 changes: 1 addition & 1 deletion security/nss/lib/softoken/lowpbe.c
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ typedef struct KDFCacheItemStr KDFCacheItem;
/* Bug 1606992 - Cache the hash result for the common case that we're
* asked to repeatedly compute the key for the same password item,
* hash, iterations and salt. */
#define KDF2_CACHE_COUNT 2
#define KDF2_CACHE_COUNT 3
static struct {
PZLock *lock;
struct {
Expand Down
6 changes: 3 additions & 3 deletions security/nss/lib/softoken/softkver.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
* The format of the version string should be
* "<major version>.<minor version>[.<patch level>[.<build number>]][ <ECC>][ <Beta>]"
*/
#define SOFTOKEN_VERSION "3.71" SOFTOKEN_ECC_STRING
#define SOFTOKEN_VERSION "3.72" SOFTOKEN_ECC_STRING " Beta"
#define SOFTOKEN_VMAJOR 3
#define SOFTOKEN_VMINOR 71
#define SOFTOKEN_VMINOR 72
#define SOFTOKEN_VPATCH 0
#define SOFTOKEN_VBUILD 0
#define SOFTOKEN_BETA PR_FALSE
#define SOFTOKEN_BETA PR_TRUE

#endif /* _SOFTKVER_H_ */
6 changes: 3 additions & 3 deletions security/nss/lib/util/nssutil.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
* The format of the version string should be
* "<major version>.<minor version>[.<patch level>[.<build number>]][ <Beta>]"
*/
#define NSSUTIL_VERSION "3.71"
#define NSSUTIL_VERSION "3.72 Beta"
#define NSSUTIL_VMAJOR 3
#define NSSUTIL_VMINOR 71
#define NSSUTIL_VMINOR 72
#define NSSUTIL_VPATCH 0
#define NSSUTIL_VBUILD 0
#define NSSUTIL_BETA PR_FALSE
#define NSSUTIL_BETA PR_TRUE

SEC_BEGIN_PROTOS

Expand Down

0 comments on commit 2858bd1

Please sign in to comment.