mirror of
https://github.com/Neo-Desktop/WindowsXPKg
synced 2024-12-22 12:30:17 +02:00
Update cli.cpp
This commit is contained in:
parent
104bdb19e3
commit
2703e17f69
@ -165,9 +165,10 @@ int CLI::parseCommandLine(int argc, char* argv[], Options* options) {
|
|||||||
} else if (arg == "-m" || arg == "--mode") {
|
} else if (arg == "-m" || arg == "--mode") {
|
||||||
std::string mode = argv[i+1];
|
std::string mode = argv[i+1];
|
||||||
char *p = &mode[0];
|
char *p = &mode[0];
|
||||||
for (int i = 0; *p; i++) {
|
for (; *p; p++) {
|
||||||
*p+i = toupper((unsigned char)*p+i);
|
*p = toupper((unsigned char)*p);
|
||||||
}
|
}
|
||||||
|
p = &mode[0];
|
||||||
if (strcmp(p, "WINDOWS") == 0) {
|
if (strcmp(p, "WINDOWS") == 0) {
|
||||||
options->activationMode = WINDOWS;
|
options->activationMode = WINDOWS;
|
||||||
} else if (strcmp(p, "OFFICEXP") == 0) {
|
} else if (strcmp(p, "OFFICEXP") == 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user