cygcheck.cc: Fix missing commas in products array

* cygcheck.cc (dump_sysinfo): Fix missing commas in products array.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen 2015-08-30 21:46:58 +02:00
parent e3de6b0a4d
commit 5a3d536ce1
2 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,7 @@
2015-08-30 Corinna Vinschen <corinna@vinschen.de>
* cygcheck.cc (dump_sysinfo): Fix missing commas in products array.
2015-08-30 Corinna Vinschen <corinna@vinschen.de>
* cygcheck.cc (load_cygwin): Only unload cygwin DLL if not running

View File

@ -1612,8 +1612,8 @@ dump_sysinfo ()
/* 0x00000064 */ " Single Language",
/* 0x00000065 */ " Home",
/* 0x00000066 */ "",
/* 0x00000067 */ " Professional with Media Center"
/* 0x00000068 */ " Mobile"
/* 0x00000067 */ " Professional with Media Center",
/* 0x00000068 */ " Mobile",
/* 0x00000069 */ "",
/* 0x0000006a */ "",
/* 0x0000006b */ "",
@ -1630,8 +1630,8 @@ dump_sysinfo ()
/* 0x00000076 */ "",
/* 0x00000077 */ "",
/* 0x00000078 */ "",
/* 0x00000079 */ " Education"
/* 0x0000007a */ " Education N"
/* 0x00000079 */ " Education",
/* 0x0000007a */ " Education N",
/* 0x0000007b */ "",
/* 0x0000007c */ "",
/* 0x0000007d */ "",
@ -1642,7 +1642,7 @@ dump_sysinfo ()
/* 0x00000082 */ "",
/* 0x00000083 */ "",
/* 0x00000084 */ "",
/* 0x00000085 */ " Mobile Enterprise"
/* 0x00000085 */ " Mobile Enterprise",
};
if (prod == PRODUCT_UNLICENSED)
strcat (osname, "Unlicensed");