summaryrefslogtreecommitdiff
path: root/cpp/test/IceSSL/configuration/AllTests.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2014-09-01 13:54:22 +0200
committerJose <jose@zeroc.com>2014-09-01 13:54:22 +0200
commit3d615bbebf537bea6ae93fc46abd3af7113fab66 (patch)
tree4b0d17bc7bc2ad9430b8af719bb057fdb3de9a67 /cpp/test/IceSSL/configuration/AllTests.cpp
parentNew fix for ICE-5637: Glacier2CryptPermissionsVerifier plugin + Glacier2Inter... (diff)
downloadice-3d615bbebf537bea6ae93fc46abd3af7113fab66.tar.bz2
ice-3d615bbebf537bea6ae93fc46abd3af7113fab66.tar.xz
ice-3d615bbebf537bea6ae93fc46abd3af7113fab66.zip
Fix (ICE-3445) - consider not installing internal header files
Diffstat (limited to 'cpp/test/IceSSL/configuration/AllTests.cpp')
-rw-r--r--cpp/test/IceSSL/configuration/AllTests.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceSSL/configuration/AllTests.cpp b/cpp/test/IceSSL/configuration/AllTests.cpp
index c126ea2dd23..7e8e576d229 100644
--- a/cpp/test/IceSSL/configuration/AllTests.cpp
+++ b/cpp/test/IceSSL/configuration/AllTests.cpp
@@ -8,11 +8,11 @@
// **********************************************************************
#include <Ice/Ice.h>
-#include <IceUtil/FileUtil.h>
#include <IceSSL/Plugin.h>
#include <TestCommon.h>
#include <Test.h>
#include <Util.h>
+#include <fstream>
using namespace std;
using namespace Ice;
@@ -21,7 +21,7 @@ using namespace Ice;
void
readFile(const string& file, vector<char>& buffer)
{
- IceUtilInternal::ifstream is(file, ios::in | ios::binary);
+ ifstream is(file.c_str(), ios::in | ios::binary);
if(!is.good())
{
throw "error opening file " + file;