From a26bd506ccace83fd13c8f287f7aadb993fafc0a Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Wed, 5 Oct 2011 20:58:54 +0000 Subject: [PATCH] [NETSHELL] - Fix a typo - Intel PRO/1000 shows a link speed of 1 Gbps now svn path=/trunk/; revision=54017 --- reactos/dll/win32/netshell/lanstatusui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/netshell/lanstatusui.c b/reactos/dll/win32/netshell/lanstatusui.c index f1cfd4cc13b..47862f945e3 100644 --- a/reactos/dll/win32/netshell/lanstatusui.c +++ b/reactos/dll/win32/netshell/lanstatusui.c @@ -86,7 +86,7 @@ UpdateLanStatusUiDlg( } else { - if (LoadStringW(netshell_hInstance, IDS_FORMAT_KBIT, szFormat, sizeof(szFormat)/sizeof(WCHAR))) + if (LoadStringW(netshell_hInstance, IDS_FORMAT_GBIT, szFormat, sizeof(szFormat)/sizeof(WCHAR))) { swprintf(szBuffer, szFormat, IfEntry->dwSpeed/1000000000); SendDlgItemMessageW(hwndDlg, IDC_SPEED, WM_SETTEXT, 0, (LPARAM)szBuffer);