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
This commit is contained in:
jbjohnso 2012-03-06 19:59:54 +00:00
parent 38c71e86bc
commit 5ee88c2603

View File

@ -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;