From 686cb8df0c558cdfe8b0b9a48355566391daf073 Mon Sep 17 00:00:00 2001 From: Dimitri van Heesch Date: Tue, 18 Jul 2000 20:48:46 +0000 Subject: Still some strcasecmp that should be stricmp's --- src/doxygen.cpp | 6 +++--- 1 file 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