mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
Replace deprecated stricmp with _stricmp
svn path=/trunk/; revision=38290
This commit is contained in:
parent
8bb3a3af67
commit
565970f956
1 changed files with 2 additions and 2 deletions
|
@ -240,9 +240,9 @@ int main(int argc, char **argv)
|
|||
return 0;
|
||||
}
|
||||
|
||||
if (!stricmp(argv[1], "socket"))
|
||||
if (!_stricmp(argv[1], "socket"))
|
||||
return SocketTest();
|
||||
if (!stricmp(argv[1], "virtual"))
|
||||
if (!_stricmp(argv[1], "virtual"))
|
||||
return VirtualTest();
|
||||
|
||||
printf("Test '%s' doesn't exist\n", argv[1]);
|
||||
|
|
Loading…
Reference in a new issue