From b1c534716bf63c57010ea1021c409b12f0f54a74 Mon Sep 17 00:00:00 2001 From: lissav Date: Tue, 11 Oct 2011 18:42:22 +0000 Subject: [PATCH] fix perl error because of conflicting close function git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.6@10746 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/Table.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl-xCAT/xCAT/Table.pm b/perl-xCAT/xCAT/Table.pm index 336fe4681..8808997f6 100644 --- a/perl-xCAT/xCAT/Table.pm +++ b/perl-xCAT/xCAT/Table.pm @@ -3806,7 +3806,7 @@ sub writeAllEntries $rc=output_table($self->{tabname},$fh,$self,$data); } $query->finish(); - close $fh; + CORE::close $fh; return $rc; } @@ -3892,7 +3892,7 @@ sub writeAllAttribsWhere $rc=output_table($self->{tabname},$fh,$self,$data); } $query->finish(); - close $fh; + CORE::close $fh; return $rc ; } #--------------------------------------------------------------------------