summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/IceGridNode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceGrid/IceGridNode.cpp')
-rw-r--r--cpp/src/IceGrid/IceGridNode.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/cpp/src/IceGrid/IceGridNode.cpp b/cpp/src/IceGrid/IceGridNode.cpp
index 389f2fc8516..7d404da3fe5 100644
--- a/cpp/src/IceGrid/IceGridNode.cpp
+++ b/cpp/src/IceGrid/IceGridNode.cpp
@@ -19,7 +19,6 @@
#include <IceGrid/TraceLevels.h>
#include <IceGrid/DescriptorParser.h>
#include <IceGrid/Util.h>
-#include <IcePatch2Lib/Util.h>
#ifdef _WIN32
# include <direct.h>
@@ -361,9 +360,8 @@ NodeService::startImpl(int argc, char* argv[], int& status)
dataPath += "/";
}
- IcePatch2Internal::createDirectory(dataPath + "servers");
- IcePatch2Internal::createDirectory(dataPath + "tmp");
- IcePatch2Internal::createDirectory(dataPath + "distrib");
+ createDirectory(dataPath + "servers");
+ createDirectory(dataPath + "tmp");
#ifdef _WIN32
//
@@ -376,7 +374,6 @@ NodeService::startImpl(int argc, char* argv[], int& status)
{
setNoIndexingAttribute(dataPath + "servers");
setNoIndexingAttribute(dataPath + "tmp");
- setNoIndexingAttribute(dataPath + "distrib");
}
catch(const FileException& ex)
{