summaryrefslogtreecommitdiff
path: root/www/apache13-modperl/files/patch-ad
diff options
context:
space:
mode:
authorOlli Hauer <ohauer@FreeBSD.org>2012-01-01 19:30:58 +0000
committerOlli Hauer <ohauer@FreeBSD.org>2012-01-01 19:30:58 +0000
commit2c96f26a12ae4d0474c70d61c6cab483c2865f49 (patch)
tree3d7591c78a947273efae6c582aacdca524e69528 /www/apache13-modperl/files/patch-ad
parent- Move all the fetching into fetch phase (diff)
- remove apache13 and ports depending on apache13 from portstree
( EXPIRATION_DATE=2012-01-01 ) with hat apache@
Notes
Notes: svn path=/head/; revision=288378
Diffstat (limited to 'www/apache13-modperl/files/patch-ad')
-rw-r--r--www/apache13-modperl/files/patch-ad11
1 files changed, 0 insertions, 11 deletions
diff --git a/www/apache13-modperl/files/patch-ad b/www/apache13-modperl/files/patch-ad
deleted file mode 100644
index d92d2f447613..000000000000
--- a/www/apache13-modperl/files/patch-ad
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/support/dbmmanage.bak Thu Mar 14 00:05:37 2002
-+++ src/support/dbmmanage Mon Jun 2 23:05:27 2003
-@@ -338,6 +338,8 @@
- } elsif (substr($chkpass, 0, 5) eq '{SHA}') {
- need_sha1_crypt;
- $crypt_method = "sha1";
-+ } elsif (substr($chkpass, 0, 3) eq '$1$') {
-+ $crypt_method = "crypt";
- } elsif (length($chkpass) == 13 && $chkpass ne $testpass) {
- $crypt_method = "crypt";
- } else {