summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-04-18 12:32:56 +0000
committerMarc Laukien <marc@zeroc.com>2002-04-18 12:32:56 +0000
commitf55b07e187be4c6fdaab57a5ecff044527e6de24 (patch)
treeab0d71fce44260e0ce3e2196dd5c113eee16c36d /cpp/src
parentupdater thread (diff)
downloadice-f55b07e187be4c6fdaab57a5ecff044527e6de24.tar.bz2
ice-f55b07e187be4c6fdaab57a5ecff044527e6de24.tar.xz
ice-f55b07e187be4c6fdaab57a5ecff044527e6de24.zip
fix
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/Ice/Instance.cpp2
-rw-r--r--cpp/src/IcePatch/Client.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/Ice/Instance.cpp b/cpp/src/Ice/Instance.cpp
index 621ab8a889a..92b97b5ab33 100644
--- a/cpp/src/Ice/Instance.cpp
+++ b/cpp/src/Ice/Instance.cpp
@@ -307,6 +307,7 @@ IceInternal::Instance::Instance(const CommunicatorPtr& communicator, const Prope
_sslSystem = IceSSL::Factory::getSystem(this);
_sslSystem->configure();
+#ifndef _WIN32
//
// daemon() must be called after the SSL system has been
// configured, since SSL might want to read a passphrase from
@@ -324,6 +325,7 @@ IceInternal::Instance::Instance(const CommunicatorPtr& communicator, const Prope
throw ex;
}
}
+#endif
//
// Must be done after daemon() is called, since daemon()
diff --git a/cpp/src/IcePatch/Client.cpp b/cpp/src/IcePatch/Client.cpp
index ccae39ef90d..b956aa2430b 100644
--- a/cpp/src/IcePatch/Client.cpp
+++ b/cpp/src/IcePatch/Client.cpp
@@ -9,7 +9,6 @@
// **********************************************************************
#include <Ice/Application.h>
-#include <Glacier/Glacier.h>
#include <IcePatch/FileDescFactory.h>
#include <IcePatch/Util.h>
#include <Glacier/Glacier.h>
@@ -406,6 +405,7 @@ int
main(int argc, char* argv[])
{
addArgumentPrefix("IcePatch");
+ addArgumentPrefix("Glacier");
Client app;
return app.main(argc, argv);
}