diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2005-01-15 09:51:54 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2005-01-15 09:51:54 +0000 |
commit | 39d475d92fab09ed477699c88d52affebce40da7 (patch) | |
tree | 343d6748f64aa2a0ea40261930a88f7254c6b916 /www/apache13-modssl | |
parent | 2c2442a1b9b03d28619383f7b21658d73b350190 (diff) | |
download | ports-39d475d92fab09ed477699c88d52affebce40da7.tar.gz ports-39d475d92fab09ed477699c88d52affebce40da7.zip |
Notes
Diffstat (limited to 'www/apache13-modssl')
-rw-r--r-- | www/apache13-modssl/files/patch-dbmmanage | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/www/apache13-modssl/files/patch-dbmmanage b/www/apache13-modssl/files/patch-dbmmanage new file mode 100644 index 000000000000..dcce57c1ced4 --- /dev/null +++ b/www/apache13-modssl/files/patch-dbmmanage @@ -0,0 +1,11 @@ +--- src/support/dbmmanage~ Tue Oct 10 06:23:58 2000 ++++ src/support/dbmmanage Sun Dec 3 00:45:08 2000 +@@ -338,7 +338,7 @@ + } elsif (substr($chkpass, 0, 5) eq '{SHA}') { + need_sha1_crypt; + $crypt_method = "sha1"; +- } elsif (length($chkpass) == 13 && $chkpass ne $testpass) { ++ } elsif ((length($chkpass) == 13 && $chkpass ne $testpass) || ($chkpass =~ m/^\$[0-9]\$/)) { + $crypt_method = "crypt"; + } else { + $crypt_method = "plain"; |