diff options
author | Benoit Foucher <benoit@zeroc.com> | 2009-08-21 16:27:10 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2009-08-21 16:27:10 +0200 |
commit | e534ad8e25b509181f592bfc17918bd4afbe2d9a (patch) | |
tree | e2e7c6f21ad7e84e3b2ff1a634815ad8dab98d3b /cpp/src/IceGrid/ServerI.cpp | |
parent | IOCP changes, bug 3501, 4200, 4156, 3101 (diff) | |
download | ice-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.cpp | 2 |
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])) |