summaryrefslogtreecommitdiffstats
path: root/support/dbmmanage
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2000-10-10 06:23:12 +0200
committerWilliam A. Rowe Jr <wrowe@apache.org>2000-10-10 06:23:12 +0200
commit5845a2d7c145993bb5fa90186d85b63302e62701 (patch)
treedd728931c2443b7a5ceab01e4141d74cd4d7224c /support/dbmmanage
parentWrite all of the request body to the child, not just what the kernel (diff)
downloadapache2-5845a2d7c145993bb5fa90186d85b63302e62701.tar.xz
apache2-5845a2d7c145993bb5fa90186d85b63302e62701.zip
This will have been a good thing if we get that far.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86496 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/dbmmanage')
-rw-r--r--support/dbmmanage4
1 files changed, 2 insertions, 2 deletions
diff --git a/support/dbmmanage b/support/dbmmanage
index 1ba22f2c35..b31380179b 100644
--- a/support/dbmmanage
+++ b/support/dbmmanage
@@ -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) {