aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/dsa_ver.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/dsa_ver.cpp
parent74fe6649c298e34beeacc190f0d557e5421fe79e (diff)
Use binary I/O where needed
Diffstat (limited to 'doc/examples/dsa_ver.cpp')
-rw-r--r--doc/examples/dsa_ver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/dsa_ver.cpp b/doc/examples/dsa_ver.cpp
index b30208559..a666259c1 100644
--- a/doc/examples/dsa_ver.cpp
+++ b/doc/examples/dsa_ver.cpp
@@ -47,7 +47,7 @@ int main(int argc, char* argv[])
Botan::LibraryInitializer init;
- std::ifstream message(argv[2]);
+ std::ifstream message(argv[2], std::ios::binary);
if(!message)
{
std::cout << "Couldn't read the message file." << std::endl;