From 5bf561558211cc84c176b80a5b3cced32704139b Mon Sep 17 00:00:00 2001 From: "travis%sedsystems.ca" <> Date: Wed, 2 Feb 2005 03:16:24 +0000 Subject: Bug 280573 : checksetup fails in Bugzilla::Auth BEGIN block Patch by Max Kanat-Alexander r,a=justdave (Regression behaviour from Bug 278792) --- checksetup.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3-24-g4f1b