diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2011-08-04 16:05:11 -0700 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2011-08-04 16:05:11 -0700 |
commit | 78a79955b68acf13928df15e4af0bba9d597232d (patch) | |
tree | 0a9b619f4e21b50976c95afa3d7ad283353bc78b /Bugzilla/Constants.pm | |
parent | Bug 674497: (CVE-2011-2979) [SECURITY] Custom searches let you determine if a... (diff) | |
download | bugzilla-78a79955b68acf13928df15e4af0bba9d597232d.tar.gz bugzilla-78a79955b68acf13928df15e4af0bba9d597232d.tar.bz2 bugzilla-78a79955b68acf13928df15e4af0bba9d597232d.zip |
Bug 658407: Make Bugzilla not use Math::Random::Secure anymore, due to the
difficulty of installing its dependencies. Instead move the code directly
into Bugzilla itself.
r=LpSolit, r=glob, a=mkanat
Diffstat (limited to 'Bugzilla/Constants.pm')
-rw-r--r-- | Bugzilla/Constants.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index 32c74e920..12cbef3c4 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -515,7 +515,7 @@ use constant DB_MODULE => { }; # True if we're on Win32. -use constant ON_WINDOWS => ($^O =~ /MSWin32/i); +use constant ON_WINDOWS => ($^O =~ /MSWin32/i) ? 1 : 0; # True if we're using ActiveState Perl (as opposed to Strawberry) on Windows. use constant ON_ACTIVESTATE => eval { &Win32::BuildNumber }; |