From bb032f4780226d5e5beed3f03ab37d46b8351fec Mon Sep 17 00:00:00 2001 From: koldo Date: Wed, 16 Jul 2014 15:58:45 +0000 Subject: [PATCH] SysInfo_demo_console: Added more ip6 support git-svn-id: svn://ultimatepp.org/upp/trunk@7516 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- bazaar/SysInfo_demo_console/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bazaar/SysInfo_demo_console/main.cpp b/bazaar/SysInfo_demo_console/main.cpp index 6c1a9e27d..75f94576a 100644 --- a/bazaar/SysInfo_demo_console/main.cpp +++ b/bazaar/SysInfo_demo_console/main.cpp @@ -39,9 +39,9 @@ void Test() Puts(Format("System: %s", GetSystemFolder())); Puts("\nNetwork info"); - String nname, domain; - if (GetNetworkInfo(nname, domain)) - Puts(Format("Name '%s', Domain '%s'", nname, domain)); + String nname, domain, ip4, ip6; + if (GetNetworkInfo(nname, domain, ip4, ip6)) + Puts(Format("Name '%s', Domain '%s', IP4 '%s', IP6 '%s'", nname, domain, ip4, ip6)); else Puts("Problem reading newtwork data");