summaryrefslogtreecommitdiff
path: root/security/nss/files/patch-tests
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2018-10-24 16:45:28 +0000
committerJan Beich <jbeich@FreeBSD.org>2018-10-24 16:45:28 +0000
commit2847e9a23a255c992a1d39952610fc6482ea69a2 (patch)
tree7e1ecc14af97dc20e3fae134eb4400de09021645 /security/nss/files/patch-tests
parentmath/R-cran-car: updated to version 3.0-2 (diff)
security/nss: update to 3.40
Changes: https://developer.mozilla.org/docs/Mozilla/Projects/NSS/NSS_3.40_release_notes Changes: https://hg.mozilla.org/projects/nss/shortlog/NSS_3_40_RTM ABI: https://abi-laboratory.pro/tracker/timeline/nss/
Diffstat (limited to 'security/nss/files/patch-tests')
-rw-r--r--security/nss/files/patch-tests12
1 files changed, 0 insertions, 12 deletions
diff --git a/security/nss/files/patch-tests b/security/nss/files/patch-tests
deleted file mode 100644
index a5b9a3f4e38f..000000000000
--- a/security/nss/files/patch-tests
+++ /dev/null
@@ -1,12 +0,0 @@
---- tests/common/init.sh.orig 2018-08-31 12:55:53 UTC
-+++ tests/common/init.sh
-@@ -366,7 +366,8 @@ if [ -z "${INIT_SOURCED}" -o "${INIT_SOURCED}" != "TRU
- if [ -z "${DOMSUF}" ]; then
- DOMSUF=`echo $HOST | sed -e "s/^[^.]*\.//"`
- fi
-- HOST=`echo $HOST | sed -e "s/\..*//"`
-+ DOMSUF=${HOST#*.} # remove Smallest Prefix matching ``*.''
-+ HOST=${HOST%%.*} # remove Largest Suffix ``.*''. See sh(1)
- ;;
- ?*)
- ;;