summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/PluginI.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2008-04-15 22:59:13 -0700
committerMark Spruiell <mes@zeroc.com>2008-04-15 22:59:13 -0700
commita5e873a44d51c1b572d008c2f748e63ad54b9c7a (patch)
tree5ce41f40aa6add0a7985bf6c6485221081aa245f /cpp/src/IceSSL/PluginI.cpp
parentminor fixes to CHANGES/RELEASE_NOTES (diff)
downloadice-a5e873a44d51c1b572d008c2f748e63ad54b9c7a.tar.bz2
ice-a5e873a44d51c1b572d008c2f748e63ad54b9c7a.tar.xz
ice-a5e873a44d51c1b572d008c2f748e63ad54b9c7a.zip
bug 3008 - IceSSL cleanup
Diffstat (limited to 'cpp/src/IceSSL/PluginI.cpp')
-rw-r--r--cpp/src/IceSSL/PluginI.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/IceSSL/PluginI.cpp b/cpp/src/IceSSL/PluginI.cpp
index 69747094bc8..8c60ce4a9f6 100644
--- a/cpp/src/IceSSL/PluginI.cpp
+++ b/cpp/src/IceSSL/PluginI.cpp
@@ -11,12 +11,15 @@
#include <IceSSL/Instance.h>
#include <IceSSL/TransceiverI.h>
#include <IceSSL/Util.h>
+
#include <Ice/BuiltinSequences.h>
#include <Ice/Communicator.h>
#include <Ice/LocalException.h>
#include <Ice/Logger.h>
#include <Ice/Properties.h>
+
#include <IceUtil/StaticMutex.h>
+#include <IceUtil/StringUtil.h>
#include <Ice/ConnectionI.h> // For implementation of getConnectionInfo.
@@ -193,7 +196,7 @@ IceSSL::PluginI::setupSSL(const CommunicatorPtr& communicator)
const string sep = ":";
#endif
string defaultDir = properties->getProperty("IceSSL.DefaultDir");
- if(!splitString(randFiles, sep, false, files))
+ if(!IceUtilInternal::splitString(randFiles, sep, files))
{
PluginInitializationException ex(__FILE__, __LINE__);
ex.reason = "IceSSL: invalid value for IceSSL.Random:\n" + randFiles;