aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/hasher.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-10-15 16:01:43 +0000
committerlloyd <[email protected]>2010-10-15 16:01:43 +0000
commit76de66140226728fd22f1dfda976e7214d79a62c (patch)
treefa086c236b0a6ffd1c0ea4aa19a7174cd3cf73ea /doc/examples/hasher.cpp
parent74fe6649c298e34beeacc190f0d557e5421fe79e (diff)
Use binary I/O where needed
Diffstat (limited to 'doc/examples/hasher.cpp')
-rw-r--r--doc/examples/hasher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/hasher.cpp b/doc/examples/hasher.cpp
index f3f2ab874..e5c52ba55 100644
--- a/doc/examples/hasher.cpp
+++ b/doc/examples/hasher.cpp
@@ -35,7 +35,7 @@ int main(int argc, char* argv[])
Botan::Pipe pipe(new Botan::Fork(hash, COUNT));
- std::ifstream file(argv[j]);
+ std::ifstream file(argv[j], std::ios::binary);
if(!file)
{
std::cout << "ERROR: could not open " << argv[j] << std::endl;