summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2014-09-19 05:45:51 +0000
committerwiz <wiz@pkgsrc.org>2014-09-19 05:45:51 +0000
commitaac59644fbe5e6431d3980704fb565b7e8e9bcdd (patch)
tree6ac77f11387c01292ab9b07232ea6a23f54cfa4e
parent63112e6fc50baf04da32c746ac964b8e7cdc1d3f (diff)
downloadpkgsrc-aac59644fbe5e6431d3980704fb565b7e8e9bcdd.tar.gz
Remove patch-ac which was removed from distinfo during 1.8.0 update.
-rw-r--r--security/john/patches/patch-ac15
1 files changed, 0 insertions, 15 deletions
diff --git a/security/john/patches/patch-ac b/security/john/patches/patch-ac
deleted file mode 100644
index 8a951194c9f..00000000000
--- a/security/john/patches/patch-ac
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2011/06/20 09:17:50 drochner Exp $
-
-http://www.openwall.com/lists/john-dev/2011/06/19/3
-
---- src/BF_std.c.orig 2010-05-25 06:30:33.000000000 +0000
-+++ src/BF_std.c
-@@ -587,7 +587,7 @@ void BF_std_set_key(char *key, int index
- tmp = 0;
- for (j = 0; j < 4; j++) {
- tmp <<= 8;
-- tmp |= *ptr;
-+ tmp |= (unsigned char)*ptr;
-
- if (!*ptr) ptr = key; else ptr++;
- }