diff options
author | Christoph Moench-Tegeder <cmt@FreeBSD.org> | 2025-06-20 14:49:23 +0200 |
---|---|---|
committer | Christoph Moench-Tegeder <cmt@FreeBSD.org> | 2025-06-20 14:49:23 +0200 |
commit | 3fd38a5298461274e6675c100c7453b6bb81f436 (patch) | |
tree | 6a0c7887b21188048a8411f127921d27c9b5618b /security/nss/files/patch-bug1973105 | |
parent | graphics/p5-Image-ExifTool-devel: update to 13.31 (diff) |
security/nss: update to 3.113
Release Notes:
https://firefox-source-docs.mozilla.org/security/nss/releases/nss_3_113.html
Diffstat (limited to 'security/nss/files/patch-bug1973105')
-rw-r--r-- | security/nss/files/patch-bug1973105 | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/security/nss/files/patch-bug1973105 b/security/nss/files/patch-bug1973105 new file mode 100644 index 000000000000..ef2eea831b0d --- /dev/null +++ b/security/nss/files/patch-bug1973105 @@ -0,0 +1,23 @@ +commit 98cb80c5fba9550451f6df711a2ae460608acd5e +Author: Christoph Moench-Tegeder <cmt@burggraben.net> + + Bug 1973105 - remove out-of-function semicolon, r=rrelyea + + given the right flags, consumers of nss may fail with + : /usr/local/include/nss/pkcs11n.h:633:92: error: extra ';' outside of a function [-Werror,-Wextra-semi] + + Differential Revision: https://phabricator.services.mozilla.com/D254438 + +diff --git lib/util/pkcs11n.h lib/util/pkcs11n.h +index cba3f63ae..9365d697a 100644 +--- lib/util/pkcs11n.h ++++ lib/util/pkcs11n.h +@@ -630,7 +630,7 @@ _NSS_DEPRECATE_DEFINE_TYPE(CK_TRUST, CKT_NSS_VALID, + #define CKT_NSS_VALID \ + _NSS_DEPRECATE_DEFINE_VALUE(CKT_NSS_VALID, CKT_NSS_NOT_TRUSTED) + _NSS_DEPRECATE_DEFINE_TYPE(CK_TRUST, CKT_NSS_MUST_VERIFY, +- "CKT_NSS_MUST_VERIFY really functions as CKT_NSS_TRUST_UNKNOWN"); ++ "CKT_NSS_MUST_VERIFY really functions as CKT_NSS_TRUST_UNKNOWN") + #define CKT_NSS_MUST_VERIFY \ + _NSS_DEPRECATE_DEFINE_VALUE(CKT_NSS_MUST_VERIFY, CKT_NSS_TRUST_UNKNOWN) + |