mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
kjk_hyperion: "underscores solve all issues"
replace wcsicmp with _wcsicmp svn path=/trunk/; revision=38288
This commit is contained in:
parent
d284aa7851
commit
a3bf2399ff
1 changed files with 2 additions and 2 deletions
|
@ -275,9 +275,9 @@ _tmain (VOID)
|
|||
_tcscpy(ServerName,argv[++i]);
|
||||
bLocal = FALSE;
|
||||
}
|
||||
else if(!wcsicmp(argv[i], L"/U") && i + 1 < argc)
|
||||
else if(!_wcsicmp(argv[i], L"/U") && i + 1 < argc)
|
||||
_tcscpy(UserName,argv[++i]);
|
||||
else if(!wcsicmp(argv[i], L"/P") && i + 1 < argc)
|
||||
else if(!_wcsicmp(argv[i], L"/P") && i + 1 < argc)
|
||||
_tcscpy(Password,argv[++i]);
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue