From 4ac1eae8cfdcf64fdf69dec8f05533432a12a760 Mon Sep 17 00:00:00 2001 From: Ged Murphy Date: Tue, 3 Jan 2006 23:41:57 +0000 Subject: [PATCH] - Display a temporary note in ipconfig to avoid user confusion. - Requires fixing of GetAdaptersInfo svn path=/trunk/; revision=20558 --- reactos/apps/utils/net/ipconfig/ipconfig.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/reactos/apps/utils/net/ipconfig/ipconfig.c b/reactos/apps/utils/net/ipconfig/ipconfig.c index 1eaa5b95696..a5ade952a94 100644 --- a/reactos/apps/utils/net/ipconfig/ipconfig.c +++ b/reactos/apps/utils/net/ipconfig/ipconfig.c @@ -144,11 +144,13 @@ INT ShowInfo(BOOL bAll) } pAdapter = pAdapterInfo; - //HKEY hKey; - //LPCTSTR lpSubKey = _T("SYSTEM\\ControlSet\\Control\\Network"); - _tprintf(_T("\nReactOS IP Configuration\n\n")); + /* temp note until GetAdatersInfo is fixed */ + _tprintf(_T("Note - ipconfig is currently returning incorrect information\n")); + _tprintf(_T("If your adapter is configured correctly, it will usually \n")); + _tprintf(_T("display the loopback, otherwise an error will be displayed\n\n")); + _tprintf(_T("\nReactOS IP Configuration\n\n")); if (bAll) { -- 2.17.1