diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-07-18 20:48:46 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-07-18 20:48:46 (GMT) |
commit | 4c7970f62fae48e85aee5b1d2a6d3d505e25c9b0 (patch) | |
tree | a7cca7e786a477b4a59d964890f8e309673bab7a /src/doxygen.cpp | |
parent | 5d301b7175193a7bb7973506df92da065b4acf6e (diff) | |
download | Doxygen-4c7970f62fae48e85aee5b1d2a6d3d505e25c9b0.zip Doxygen-4c7970f62fae48e85aee5b1d2a6d3d505e25c9b0.tar.gz Doxygen-4c7970f62fae48e85aee5b1d2a6d3d505e25c9b0.tar.bz2 |
Still some strcasecmp that should be stricmp's
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 6 |
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 { |