Don't show eth-speed if it was never set

This commit is contained in:
Michael Stapelberg 2008-12-10 11:11:31 +01:00
parent 9388ee56e1
commit 513cfe8f1b

View File

@ -367,7 +367,7 @@ static char *get_eth_info() {
ifr.ifr_data = (caddr_t)&ecmd;
(void)strcpy(ifr.ifr_name, eth_interface);
if ((err = ioctl(fd, SIOCETHTOOL, &ifr)) == 0)
ethspeed = ecmd.speed;
ethspeed = (ecmd.speed == 65535 ? 0 : ecmd.speed);
else write_error_to_statusbar("Could not get interface speed. Insufficient privileges?");
(void)close(fd);