summaryrefslogtreecommitdiffstats
path: root/src/dotfilepatcher.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-03-24 19:34:50 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-03-24 19:34:50 (GMT)
commit3a365ab230cab40910366eee5352534719541598 (patch)
treef0d5b60a05af6f1a440f02098951db6eca6a0fc0 /src/dotfilepatcher.cpp
parentb4d7ed48ba6b44d5269fd69517535b4b91eb3f8a (diff)
downloadDoxygen-3a365ab230cab40910366eee5352534719541598.zip
Doxygen-3a365ab230cab40910366eee5352534719541598.tar.gz
Doxygen-3a365ab230cab40910366eee5352534719541598.tar.bz2
issue #8375 Lowercase search does not find non-ASCII uppercase pages and vice versa (part 2)
Diffstat (limited to 'src/dotfilepatcher.cpp')
-rw-r--r--src/dotfilepatcher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotfilepatcher.cpp b/src/dotfilepatcher.cpp
index d19dc4a..689c517 100644
--- a/src/dotfilepatcher.cpp
+++ b/src/dotfilepatcher.cpp
@@ -466,7 +466,7 @@ bool DotFilePatcher::run() const
// keep original SVG file so we can refer to it, we do need to replace
// dummy link by real ones
fi.open(tmpName,std::ifstream::in);
- t.open(orgName,std::ofstream::out);
+ t.open(orgName,std::ofstream::out | std::ofstream::binary);
if (!fi.is_open())
{
err("problem opening file %s for reading!\n",tmpName.c_str());