1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-13 03:03:15 +00:00
freebsd-ports/www/apache13/files/patch-ad
2003-06-02 19:12:45 +00:00

12 lines
425 B
Plaintext

--- 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 {