summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-07-18 20:48:46 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-07-18 20:48:46 (GMT)
commit686cb8df0c558cdfe8b0b9a48355566391daf073 (patch)
treea7cca7e786a477b4a59d964890f8e309673bab7a
parent27224b65b5e803c8de1c8730e51bc0f442a29d5f (diff)
downloadDoxygen-686cb8df0c558cdfe8b0b9a48355566391daf073.zip
Doxygen-686cb8df0c558cdfe8b0b9a48355566391daf073.tar.gz
Doxygen-686cb8df0c558cdfe8b0b9a48355566391daf073.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
{