summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-07-18 20:48:46 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-07-18 20:48:46 (GMT)
commit4c7970f62fae48e85aee5b1d2a6d3d505e25c9b0 (patch)
treea7cca7e786a477b4a59d964890f8e309673bab7a
parent5d301b7175193a7bb7973506df92da065b4acf6e (diff)
downloadDoxygen-4c7970f62fae48e85aee5b1d2a6d3d505e25c9b0.zip
Doxygen-4c7970f62fae48e85aee5b1d2a6d3d505e25c9b0.tar.gz
Doxygen-4c7970f62fae48e85aee5b1d2a6d3d505e25c9b0.tar.bz2
Still some strcasecmp that should be stricmp's
-rw-r--r--src/doxygen.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 73f0969..47d54dd 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -5266,17 +5266,17 @@ int main(int argc,char **argv)
err("Error: option -w is missing a configuration file name\n");
exit(1);
}
- if (strcasecmp(formatName,"rtf")==0)
+ if (stricmp(formatName,"rtf")==0)
{
generateStyleSheetFile(OutputGenerator::RTF,argv[optind+1]);
exit(1);
}
- else if (strcasecmp(formatName,"html")==0)
+ else if (stricmp(formatName,"html")==0)
{
generateStyleSheetFile(OutputGenerator::Html,argv[optind+1]);
exit(1);
}
- else if (strcasecmp(formatName,"latex")==0)
+ else if (stricmp(formatName,"latex")==0)
{
if (optind+2<argc) // use config file to get settings
{