summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2004-03-12 19:03:40 +0000
committerMark Spruiell <mes@zeroc.com>2004-03-12 19:03:40 +0000
commitcc8433d4ca53ad5aa11ce8385284c7730e6a34b8 (patch)
treef572808804056cc902fe80a3a2ccf1a79248960a /cpp
parentRemoved local from IdentitySeq (diff)
downloadice-cc8433d4ca53ad5aa11ce8385284c7730e6a34b8.tar.bz2
ice-cc8433d4ca53ad5aa11ce8385284c7730e6a34b8.tar.xz
ice-cc8433d4ca53ad5aa11ce8385284c7730e6a34b8.zip
minor fix
Diffstat (limited to 'cpp')
-rw-r--r--cpp/src/IcePack/IcePackNode.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IcePack/IcePackNode.cpp b/cpp/src/IcePack/IcePackNode.cpp
index 0ef1bdb3e6d..81c3c337988 100644
--- a/cpp/src/IcePack/IcePackNode.cpp
+++ b/cpp/src/IcePack/IcePackNode.cpp
@@ -243,14 +243,14 @@ IcePack::NodeService::start(int argc, char* argv[])
if(::_stat(dataPath.c_str(), &filestat) != 0 || !S_ISDIR(filestat.st_mode))
{
error("property `IcePack.Node.Data' is not set to a valid directory path");
- return EXIT_FAILURE;
+ return false;
}
#else
struct stat filestat;
if(::stat(dataPath.c_str(), &filestat) != 0 || !S_ISDIR(filestat.st_mode))
{
error("property `IcePack.Node.Data' is not set to a valid directory path");
- return EXIT_FAILURE;
+ return false;
}
#endif