diff options
author | travis%sedsystems.ca <> | 2005-02-02 04:16:24 +0100 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-02-02 04:16:24 +0100 |
commit | 5bf561558211cc84c176b80a5b3cced32704139b (patch) | |
tree | b825780ed121a2acab3c87dd988cd2bae0b6f86d | |
parent | 80e765fbe8bf23ba27b5484bdb3a65c7aa723d6f (diff) | |
download | bugzilla-5bf561558211cc84c176b80a5b3cced32704139b.tar.gz bugzilla-5bf561558211cc84c176b80a5b3cced32704139b.tar.xz |
Bug 280573 : checksetup fails in Bugzilla::Auth BEGIN block
Patch by Max Kanat-Alexander <mkanat@kerio.com> r,a=justdave
(Regression behaviour from Bug 278792)
-rwxr-xr-x | checksetup.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl index 37f96df0a..1a8f46f55 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -1470,7 +1470,8 @@ if ($^O !~ /MSWin32/i) { # It's safe to use Bugzilla::Auth here because parameters have now been # defined. -use Bugzilla::Auth; +require Bugzilla::Auth; +import Bugzilla::Auth 'bz_crypt'; # globals.pl clears the PATH, but File::Find uses Cwd::cwd() instead of # Cwd::getcwd(), which we need to do because `pwd` isn't in the path - see |