From dc91459b0dbd79e31d70e5c4823b1611c59c4d85 Mon Sep 17 00:00:00 2001 From: "travis%sedsystems.ca" Date: Tue, 1 Feb 2005 19:16:24 +0000 Subject: [PATCH] Bug 280573 : checksetup fails in Bugzilla::Auth BEGIN block Patch by Max Kanat-Alexander r,a=justdave (Regression behaviour from Bug 278792) git-svn-id: svn://10.0.0.236/trunk@168652 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/checksetup.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/checksetup.pl b/mozilla/webtools/bugzilla/checksetup.pl index 37f96df0ade..1a8f46f5555 100755 --- a/mozilla/webtools/bugzilla/checksetup.pl +++ b/mozilla/webtools/bugzilla/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