diff options
author | Benoit Foucher <benoit@zeroc.com> | 2009-08-14 11:33:44 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2009-08-14 11:33:44 +0200 |
commit | 4b64457fdc377d175ae2ba7e7cceb7f669aea758 (patch) | |
tree | e4b083270c351c4b0a3ede12d6edbe251d9a605e /cpp/src/IceGrid/IceGridNode.cpp | |
parent | Fixed encapsulation sizes in raw perf clients (diff) | |
download | ice-4b64457fdc377d175ae2ba7e7cceb7f669aea758.tar.bz2 ice-4b64457fdc377d175ae2ba7e7cceb7f669aea758.tar.xz ice-4b64457fdc377d175ae2ba7e7cceb7f669aea758.zip |
Review for bug 4071 and fix for bug 4211
Diffstat (limited to 'cpp/src/IceGrid/IceGridNode.cpp')
-rw-r--r-- | cpp/src/IceGrid/IceGridNode.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/IceGridNode.cpp b/cpp/src/IceGrid/IceGridNode.cpp index a78d45531a7..a63c8e13a05 100644 --- a/cpp/src/IceGrid/IceGridNode.cpp +++ b/cpp/src/IceGrid/IceGridNode.cpp @@ -376,7 +376,7 @@ NodeService::startImpl(int argc, char* argv[]) ostringstream os; FileException ex(__FILE__, __LINE__); ex.path = dataPath; - ex.error = getSystemErrno(); + ex.error = IceInternal::getSystemErrno(); os << ex; error("property `IceGrid.Node.Data' is set to an invalid path:\n" + os.str()); return false; @@ -388,7 +388,7 @@ NodeService::startImpl(int argc, char* argv[]) ostringstream os; FileException ex(__FILE__, __LINE__); ex.path = dataPath; - ex.error = getSystemErrno(); + ex.error = IceInternal::getSystemErrno(); os << ex; error("property `IceGrid.Node.Data' is set to an invalid path:\n" + os.str()); return false; |