From a5f7beaffc01263b2e08026b4d52f78ad3ef7369 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Thu, 14 Aug 2008 20:27:39 +0000 Subject: [PATCH] -Correct typo in previous checkin, give bind plugin a break for now git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2029 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/bind.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/bind.pm b/xCAT-server/lib/xcat/plugins/bind.pm index 95e04d0b2..fcfc6c401 100755 --- a/xCAT-server/lib/xcat/plugins/bind.pm +++ b/xCAT-server/lib/xcat/plugins/bind.pm @@ -9,6 +9,7 @@ # mucking with sysconfig package xCAT_plugin::bind; use strict; +no strict "refs"; #This code is as yet still very broken... #use warnings; use Sys::Hostname; use Cwd; @@ -114,7 +115,7 @@ sub process_request { return; } my @args=(); - if ($request->{$arg}) { + if ($request->{arg}) { @args = @{$request->{arg}}; } (my $fent) = $sitetab->getAttribs({key=>'forwarders'},'value');