From 274b8dcf6da63f7366e8debe53f42ed9543237fc Mon Sep 17 00:00:00 2001 From: ligc Date: Mon, 14 Nov 2011 06:40:22 +0000 Subject: [PATCH] remove an unecessary global variable git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10996 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/DBobjUtils.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/DBobjUtils.pm b/perl-xCAT/xCAT/DBobjUtils.pm index e489d8308..92ae050ba 100644 --- a/perl-xCAT/xCAT/DBobjUtils.pm +++ b/perl-xCAT/xCAT/DBobjUtils.pm @@ -1039,7 +1039,8 @@ sub setobjdefs # # get the actual attr name to use in the table # - may be different then the attr name used for the object. - ($::tab, $::tabattr) = split('\.', $this_attr->{tabentry}); + my $ntab; + ($ntab, $::tabattr) = split('\.', $this_attr->{tabentry}); my $rc = xCAT::DBobjUtils->parse_access_tabentry($objname, $this_attr->{access_tabentry}, \%tabentry);