aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_cvc.cpp
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2015-06-23 10:34:21 +0200
committerSimon Warta <[email protected]>2015-06-23 10:34:21 +0200
commit5ca7fb9b6744ccad16feda0d4a14132cbce6cd30 (patch)
treecd1d6da4856c57948b5c46e5b173dc7b1381e2ea /src/tests/test_cvc.cpp
parent43e3c4555c9f2535f18741f3e252b3c93cbbaeca (diff)
ifstream/ostream take std::string
Diffstat (limited to 'src/tests/test_cvc.cpp')
-rw-r--r--src/tests/test_cvc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/test_cvc.cpp b/src/tests/test_cvc.cpp
index eb10ebd40..a2e398c37 100644
--- a/src/tests/test_cvc.cpp
+++ b/src/tests/test_cvc.cpp
@@ -44,15 +44,15 @@ namespace {
void helper_write_file(EAC_Signed_Object const& to_write, std::string const& file_path)
{
std::vector<byte> sv = to_write.BER_encode();
- std::ofstream cert_file(file_path.c_str(), std::ios::binary);
+ std::ofstream cert_file(file_path, std::ios::binary);
cert_file.write((char*)&sv[0], sv.size());
cert_file.close();
}
bool helper_files_equal(std::string const& file_path1, std::string const& file_path2)
{
- std::ifstream cert_1_in(file_path1.c_str());
- std::ifstream cert_2_in(file_path2.c_str());
+ std::ifstream cert_1_in(file_path1);
+ std::ifstream cert_2_in(file_path2);
std::vector<byte> sv1;
std::vector<byte> sv2;
if (!cert_1_in || !cert_2_in)