diff options
author | Yitzchak Scott-Thoennes <sthoenna@efn.org> | 2003-02-19 05:37:39 -0800 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2003-02-25 12:12:14 +0000 |
commit | 3292f4263d4135b93f4022a8bad55fc98397b523 (patch) | |
tree | b69e1f4d4f6f01f998ed583f8b93c19d0d9f2fdb /lib/CGI.pm | |
parent | 16bd9a85dbc3be76d00459adeafa5bf918a5212d (diff) | |
download | perl-3292f4263d4135b93f4022a8bad55fc98397b523.tar.gz |
[perl@18752] warnings from CGI tests under cygwin
Message-ID: <jk/U+gzkg2DE092yn@efn.org>
p4raw-id: //depot/perl@18772
Diffstat (limited to 'lib/CGI.pm')
-rw-r--r-- | lib/CGI.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CGI.pm b/lib/CGI.pm index 62c41ea912..bd9c3354f7 100644 --- a/lib/CGI.pm +++ b/lib/CGI.pm @@ -149,8 +149,8 @@ $AutoloadClass = $DefaultClass unless defined $CGI::AutoloadClass; # The path separator is a slash, backslash or semicolon, depending # on the paltform. $SL = { - UNIX=>'/', OS2=>'\\', EPOC=>'/', - WINDOWS=>'\\', DOS=>'\\', MACINTOSH=>':', VMS=>'/' + UNIX => '/', OS2 => '\\', EPOC => '/', CYGWIN => '/', + WINDOWS => '\\', DOS => '\\', MACINTOSH => ':', VMS => '/' }->{$OS}; # This no longer seems to be necessary |