Fix dereference typo

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@544 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2008-02-21 20:13:12 +00:00
parent 7528335082
commit 6d5e826634
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ sub mknetboot {
my $ient = $restab->getNodeAttribs($node,['servicenode']);
my $ipfn = xCAT::Utils->my_ip_facing($node);
if ($ient and $ient->{servicenode}) { #Servicenode attribute overrides
$imgsrv = $ient=>{servicenode};
$imgsrv = $ient->{servicenode};
} elsif ($ipfn) {
$imgsrv = $ipfn; #guessing self is second best
} # resort to master value in site table only if not local to node...

View File

@ -100,7 +100,7 @@ sub mknetboot {
my $ient = $restab->getNodeAttribs($node,['servicenode']);
my $ipfn = xCAT::Utils->my_ip_facing($node);
if ($ient and $ient->{servicenode}) { #Servicenode attribute overrides
$imgsrv = $ient=>{servicenode};
$imgsrv = $ient->{servicenode};
} elsif ($ipfn) {
$imgsrv = $ipfn; #guessing self is second best
} # resort to master value in site table only if not local to node...