From 8df968341a2dfe148158f59f10d7c293be38d330 Mon Sep 17 00:00:00 2001 From: Hugo Santos Date: Wed, 4 Apr 2007 15:36:10 +0000 Subject: [PATCH] tiny case but T/TX is copper, SX is fiber git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20558 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/bin/network/ifconfig/ifconfig.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/bin/network/ifconfig/ifconfig.cpp b/src/bin/network/ifconfig/ifconfig.cpp index 0e4a36f1f2..3de352fc2e 100644 --- a/src/bin/network/ifconfig/ifconfig.cpp +++ b/src/bin/network/ifconfig/ifconfig.cpp @@ -230,9 +230,11 @@ list_interface(int socket, const char* name) type = "100 MBit, 100BASE-TX"; break; case IFM_1000_T: - case IFM_1000_SX: type = "1 GBit, 1000BASE-T"; break; + case IFM_1000_SX: + type = "1 GBit, 1000BASE-SX"; + break; } break;