[2986858] Fix the patch from this ticket (Oliver Gorwits)

This commit is contained in:
Oliver Gorwits
2012-04-12 15:02:31 +01:00
parent 295e6fb283
commit 7d470fd0e8
2 changed files with 3 additions and 2 deletions

View File

@@ -159,7 +159,7 @@ sub i_duplex {
next if ( defined $partial and $iid !~ /^$partial$/ );
# Test for gigabit
if ( $p_duplex_cap->{$port} && $p_duplex_cap->{$port} == 0 ) {
if ( defined $p_duplex_cap->{$port} and $p_duplex_cap->{$port} == 0 ) {
$i_duplex->{$iid} = 'full';
}
@@ -194,7 +194,7 @@ sub i_duplex_admin {
next if ( defined $partial and $iid !~ /^$partial$/ );
# Test for gigabit
if ( $p_duplex_cap->{$port} && $p_duplex_cap->{$port} == 1 ) {
if ( defined $p_duplex_cap->{$port} and $p_duplex_cap->{$port} == 1 ) {
$i_duplex_admin->{$iid} = 'full';
}