6a57e829a1
- Sync with apache13 layout (and some patches) - use DOCSDIR - Add no_zombies.patch - use DIST_SUBDIR=apache Removed files: - files/patch-aq - files/patch-ar Added files: - files/patch-httpd.conf-dist - files/post-patch-conf:httpd.conf-dist.orig - files/patch-FixPatch - files/patch-SSLpatch - files/patch-Makefile.tmpl - files/patch-src::modules::standard::mod_auth_db.module - files/patch-src::support::dbmanage - files/patch-src::support::log_server_status - files/patch-configure PR: 58403 Submitted By: MAINTAINER
11 lines
425 B
Text
11 lines
425 B
Text
--- 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 {
|