Replace deprecated stricmp with _stricmp
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Tue, 23 Dec 2008 01:22:36 +0000 (01:22 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Tue, 23 Dec 2008 01:22:36 +0000 (01:22 +0000)
svn path=/trunk/; revision=38290

rostests/tests/moztest/moztest.c

index 3680acb..dd792e4 100644 (file)
@@ -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]);