Skip to content

Commit

Permalink
More typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
owendelong committed Mar 16, 2024
1 parent fa99142 commit 06b94eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions switch-configuration/config/scripts/switch_template.pm
Original file line number Diff line number Diff line change
Expand Up @@ -195,14 +195,14 @@ sub get_switchlist
my @list=();
foreach(sort(keys(%Switchtypes)))
{
if ($include_Z || $switchtyps{$_}[4] -ne "Z")
if ($include_Z || $Switchtypes{$_}[4] ne "Z")
{
push @list, $_;
debug(9, "Adding $_ to list with group $switchtypes{$_}[4]\n");
debug(9, "Adding $_ to list with group $Switchtypes{$_}[4]\n");
}
else
{
debug(9, "Skipping $_ with group $switchtypes{$_}[4]\n");
debug(9, "Skipping $_ with group $Switchtypes{$_}[4]\n");
}
}
debug(5, "get_switchlist called\n");
Expand Down

0 comments on commit 06b94eb

Please sign in to comment.