summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/ServerI.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2009-08-21 16:27:10 +0200
committerBenoit Foucher <benoit@zeroc.com>2009-08-21 16:27:10 +0200
commite534ad8e25b509181f592bfc17918bd4afbe2d9a (patch)
treee2e7c6f21ad7e84e3b2ff1a634815ad8dab98d3b /cpp/src/IceGrid/ServerI.cpp
parentIOCP changes, bug 3501, 4200, 4156, 3101 (diff)
downloadice-e534ad8e25b509181f592bfc17918bd4afbe2d9a.tar.bz2
ice-e534ad8e25b509181f592bfc17918bd4afbe2d9a.tar.xz
ice-e534ad8e25b509181f592bfc17918bd4afbe2d9a.zip
Win32 compilation error fix for previous commit, also note that previous commit also fixes bug 3213 and 3549
Diffstat (limited to 'cpp/src/IceGrid/ServerI.cpp')
-rw-r--r--cpp/src/IceGrid/ServerI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/ServerI.cpp b/cpp/src/IceGrid/ServerI.cpp
index 95f8927e495..3ab2938f7db 100644
--- a/cpp/src/IceGrid/ServerI.cpp
+++ b/cpp/src/IceGrid/ServerI.cpp
@@ -2042,7 +2042,7 @@ ServerI::updateImpl(const InternalServerDescriptorPtr& descriptor)
if(!success)
{
Ice::SyscallException ex(__FILE__, __LINE__);
- ex.error = getSystemErrno();
+ ex.error = IceInternal::getSystemErrno();
throw ex;
}
if(user != string(&buf[0]))