diff options
| author | Leandro Augusto Fogolin Pereira <leandro@zorg.(none)> | 2009-01-23 21:32:56 -0200 | 
|---|---|---|
| committer | Leandro Augusto Fogolin Pereira <leandro@zorg.(none)> | 2009-01-23 21:32:56 -0200 | 
| commit | cdf9fe3d5d6e7d8df8938e016e280787f74b177d (patch) | |
| tree | 0048527bcc738155735e2f7c463f4885acc84490 /hardinfo2/arch/linux | |
| parent | d048634522a7965cac6e57b9d1d16a511bbeefe6 (diff) | |
Fix icon naming
Diffstat (limited to 'hardinfo2/arch/linux')
| -rw-r--r-- | hardinfo2/arch/linux/common/net.h | 18 | 
1 files changed, 9 insertions, 9 deletions
diff --git a/hardinfo2/arch/linux/common/net.h b/hardinfo2/arch/linux/common/net.h index 6575d199..95c507ff 100644 --- a/hardinfo2/arch/linux/common/net.h +++ b/hardinfo2/arch/linux/common/net.h @@ -224,26 +224,26 @@ static struct {      char *label;      char *icon;  } netdev2type[] = { -    { "eth", "Ethernet", "network" }, -    { "lo", "Loopback", "network-generic" }, +    { "eth", "Ethernet", "network-interface" }, +    { "lo", "Loopback", "network" },      { "ppp", "Point-to-Point", "modem" },      { "ath", "Wireless", "wireless" },      { "wlan", "Wireless", "wireless" },      { "ra", "Wireless", "wireless" },      { "wl", "Wireless", "wireless" }, -    { "tun", "Virtual Point-to-Point (TUN)", "network-generic" }, -    { "tap", "Ethernet (TAP)", "network-generic" }, +    { "tun", "Virtual Point-to-Point (TUN)", "network" }, +    { "tap", "Ethernet (TAP)", "network" },      { "plip", "Parallel Line Internet Protocol", "network" }, -    { "irlan", "Infrared", "network-generic" }, -    { "slip", "Serial Line Internet Protocol", "network-generic" }, +    { "irlan", "Infrared", "network" }, +    { "slip", "Serial Line Internet Protocol", "network" },      { "isdn", "Integrated Services Digital Network", "modem" }, -    { "sit", "IPv6-over-IPv4 Tunnel", "network-generic" }, +    { "sit", "IPv6-over-IPv4 Tunnel", "network" },      { "vmnet8", "VMWare Virtual Network Interface (NAT)", "computer" },      { "vmnet", "VMWare Virtual Network Interface", "computer" },      { "pan", "Personal Area Network (PAN)", "bluetooth" },      { "bnep", "Bluetooth", "bluetooth" }, -    { "br", "Bridge Interface", "network-generic" }, -    { NULL, "Unknown", "network-generic" }, +    { "br", "Bridge Interface", "network" }, +    { NULL, "Unknown", "network" },  };  static void net_get_iface_type(gchar * name, gchar ** type, gchar ** icon, NetInfo *ni)  | 
