From 5ee88c2603928de2cb6a616580dbe7848b8bd540 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Tue, 6 Mar 2012 19:59:54 +0000 Subject: [PATCH] Make program flow a bit more sane when debugging, don't modify data in the request structure git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@11769 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/blade.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/blade.pm b/xCAT-server/lib/xcat/plugins/blade.pm index 30f9cdfcd..fb8d7c780 100644 --- a/xCAT-server/lib/xcat/plugins/blade.pm +++ b/xCAT-server/lib/xcat/plugins/blade.pm @@ -3859,9 +3859,9 @@ sub process_request { if ($found) { $node = $macmap{$mac}; } else { - my $uuid; - foreach $uuid (@{$request->{uuid}}) { - $uuid = uc($uuid); + my $ruid; + foreach $ruid (@{$request->{uuid}}) { + my $uuid = uc($ruid); if ($uuid and $uuidmap{$uuid}) { $node = $uuidmap{$uuid}; last;