diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-03-05 21:13:43 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-03-05 21:13:43 +0000 |
commit | 329105c08d86ac3a67cce70ca2f0beaea4285d76 (patch) | |
tree | 6969c2b9c238265c6cf91615a7a10cff0e6a6f0e | |
parent | 0177f434b7cd8d5e394f5858ee672d6991f2480b (diff) | |
download | drakx-net-329105c08d86ac3a67cce70ca2f0beaea4285d76.tar drakx-net-329105c08d86ac3a67cce70ca2f0beaea4285d76.tar.gz drakx-net-329105c08d86ac3a67cce70ca2f0beaea4285d76.tar.bz2 drakx-net-329105c08d86ac3a67cce70ca2f0beaea4285d76.tar.xz drakx-net-329105c08d86ac3a67cce70ca2f0beaea4285d76.zip |
perl_checker fix
-rw-r--r-- | lib/network/connection/ethernet.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/network/connection/ethernet.pm b/lib/network/connection/ethernet.pm index da83097..1e680af 100644 --- a/lib/network/connection/ethernet.pm +++ b/lib/network/connection/ethernet.pm @@ -438,7 +438,7 @@ sub get_eth_cards { # 4) try to lookup a device by hardware address for device description: # maybe should have we try sysfs first for robustness? my @devices = mapIntfToDevice($interface); - ($description) = $devices[0]->{description} if @devices; + ($description) = $devices[0]{description} if @devices; } # 5) try to match a device through sysfs for driver & device description: # (eg: ipw2100 driver for intel centrino do not support ETHTOOL) |