]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
This will have been a good thing if we get that far.
authorWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 10 Oct 2000 04:23:12 +0000 (04:23 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 10 Oct 2000 04:23:12 +0000 (04:23 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86496 13f79535-47bb-0310-9956-ffa450edef68

support/dbmmanage

index 1ba22f2c35b40cb53b6e94f71d91aeb6db6f2568..b31380179b1cacc2e291c1e26b0d3312885d097a 100644 (file)
@@ -130,7 +130,7 @@ my $newstyle_salt = $^O =~ /(?:$newstyle_salt_platforms)/;
 
 # Some platforms just can't crypt() for Apache
 #
-my $crypt_not_supported_platforms = join '|', qw{MSWin32 netware}; #others?
+my $crypt_not_supported_platforms = join '|', qw{MSWin32 NetWare}; #others?
 my $crypt_not_supported = $^O =~ /(?:$crypt_not_supported_platforms)/;
 
 my $crypt_method = "crypt";
@@ -141,7 +141,7 @@ if ($crypt_not_supported) {
 
 # Some platforms won't jump through our favorite hoops
 #
-my $not_unix_platforms = join '|', qw{MSWin32 netware}; #others?
+my $not_unix_platforms = join '|', qw{MSWin32 NetWare}; #others?
 my $not_unix = $^O =~ /(?:$not_unix_platforms)/;
 
 if ($crypt_not_supported) {