summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch2/FileServerI.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2009-08-04 00:09:36 +0200
committerJose <jose@zeroc.com>2009-08-04 00:09:36 +0200
commit06edd41f4521d79844e4012c3e1630a0cadb49f3 (patch)
tree4ab5e789489431748c1582f206e6240e5c7ea14d /cpp/src/IcePatch2/FileServerI.cpp
parentinitialize integer members of Slice::Unit (diff)
downloadice-06edd41f4521d79844e4012c3e1630a0cadb49f3.tar.bz2
ice-06edd41f4521d79844e4012c3e1630a0cadb49f3.tar.xz
ice-06edd41f4521d79844e4012c3e1630a0cadb49f3.zip
4171 - Global namespace pollution
Diffstat (limited to 'cpp/src/IcePatch2/FileServerI.cpp')
-rw-r--r--cpp/src/IcePatch2/FileServerI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IcePatch2/FileServerI.cpp b/cpp/src/IcePatch2/FileServerI.cpp
index 3e14b22e048..7d2c735d174 100644
--- a/cpp/src/IcePatch2/FileServerI.cpp
+++ b/cpp/src/IcePatch2/FileServerI.cpp
@@ -92,7 +92,7 @@ IcePatch2::FileServerI::getFileCompressed_async(const AMD_FileServer_getFileComp
return;
}
- int fd = OS::open(_dataDir + '/' + path + ".bz2", O_RDONLY|O_BINARY);
+ int fd = IceInternal::OS::open(_dataDir + '/' + path + ".bz2", O_RDONLY|O_BINARY);
if(fd == -1)
{
FileAccessException ex;