From: travis%sedsystems.ca <> Date: Wed, 2 Feb 2005 03:16:24 +0000 (+0000) Subject: Bug 280573 : checksetup fails in Bugzilla::Auth BEGIN block X-Git-Tag: bugzilla-2.19.3~351 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5bf561558211cc84c176b80a5b3cced32704139b;p=thirdparty%2Fbugzilla.git Bug 280573 : checksetup fails in Bugzilla::Auth BEGIN block Patch by Max Kanat-Alexander r,a=justdave (Regression behaviour from Bug 278792) --- diff --git a/checksetup.pl b/checksetup.pl index 37f96df0ad..1a8f46f555 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