aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/x509/x509_crl.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-12-04 15:57:31 -0500
committerJack Lloyd <[email protected]>2017-12-04 15:57:31 -0500
commit5022191613a44f6d603294abfa79b2faf5a175ed (patch)
treefa237089991bd80bdef354c6c2bd639f69da5ac1 /src/lib/x509/x509_crl.cpp
parent697fdc8fcb7f4ada4699ccad80def4673270d133 (diff)
Need binary IO for Windows
Diffstat (limited to 'src/lib/x509/x509_crl.cpp')
-rw-r--r--src/lib/x509/x509_crl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/x509/x509_crl.cpp b/src/lib/x509/x509_crl.cpp
index 4fa5df44f..a739d2f60 100644
--- a/src/lib/x509/x509_crl.cpp
+++ b/src/lib/x509/x509_crl.cpp
@@ -49,7 +49,7 @@ X509_CRL::X509_CRL(const std::vector<uint8_t>& vec)
#if defined(BOTAN_TARGET_OS_HAS_FILESYSTEM)
X509_CRL::X509_CRL(const std::string& fsname)
{
- DataSource_Stream src(fsname);
+ DataSource_Stream src(fsname, true);
load_data(src);
}
#endif