diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2019-12-09 19:12:15 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2019-12-09 19:12:15 +0000 |
commit | b3de49c53e3680efeb6452bb28733304e11325eb (patch) | |
tree | 3549d1093e667733377c6e7790a8ceb6be235ee1 /security/cracklib/files/patch-util_cracklib-format | |
parent | Build ipv6 and ipv4 versions together and package both. (diff) |
- Update to 2.9.7. This release fixes CVE-2016-6318. Excerpt from NEWS:
* apply patch to fix CVE-2016-6318 Stack-based buffer overflow when
parsing large GECOS field
* fix a buffer overflow processing long words
* historical research and updates to repository tags to correct history,
and suggestions for new release process (Neustradamus)
- Replace a local patch with an upstream patch.
https://github.com/cracklib/cracklib/commit/a1379d0
- Apply a patch from the upstream to fix build.
https://github.com/cracklib/cracklib/commit/77082c4
- OPTIONize NLS and add pkg-plist to appease portlint.
Approved by: cy (maintainer)
MFH: 2019Q4
Notes
Notes:
svn path=/head/; revision=519629
Diffstat (limited to 'security/cracklib/files/patch-util_cracklib-format')
-rw-r--r-- | security/cracklib/files/patch-util_cracklib-format | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/security/cracklib/files/patch-util_cracklib-format b/security/cracklib/files/patch-util_cracklib-format new file mode 100644 index 000000000000..0bd2c58e2e46 --- /dev/null +++ b/security/cracklib/files/patch-util_cracklib-format @@ -0,0 +1,11 @@ +--- util/cracklib-format.orig 2019-02-14 01:54:41 UTC ++++ util/cracklib-format +@@ -4,7 +4,7 @@ + # into cracklib-packer + # + gzip -cdf "$@" | +- grep -v '^\(#\|$\)' | ++ grep -a -v '^\(#\|$\)' | + tr '[A-Z]' '[a-z]' | + tr -cd '\012[a-z][0-9]' | + env LC_ALL=C sort -u |