Maybe strcasecmp?

svn path=/trunk/; revision=72428
This commit is contained in:
Dmitry Chapyshev 2016-08-22 13:22:32 +00:00
parent bbe68b6347
commit f5b4891559

View file

@ -279,7 +279,7 @@ int main(int argc, char* argv[])
utf_converter::bom_types bom_type = utf_converter::bom;
if (argc == 4 && stricmp(argv[3], "nobom") == 0)
if (argc == 4 && strcasecmp(argv[3], "nobom") == 0)
{
bom_type = utf_converter::nobom;
}