summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch2/OS.cpp
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2005-12-16 20:10:00 +0000
committerMatthew Newhook <matthew@zeroc.com>2005-12-16 20:10:00 +0000
commit1d17688664b7178317350e22f0685982f4246f61 (patch)
tree455600111d523f3a23b837272fa49a4f36118164 /cpp/src/IcePatch2/OS.cpp
parentedit for IceGrid.Node.DisableOnFailure (diff)
downloadice-1d17688664b7178317350e22f0685982f4246f61.tar.bz2
ice-1d17688664b7178317350e22f0685982f4246f61.tar.xz
ice-1d17688664b7178317350e22f0685982f4246f61.zip
HPUX bug fix.
Diffstat (limited to 'cpp/src/IcePatch2/OS.cpp')
-rw-r--r--cpp/src/IcePatch2/OS.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IcePatch2/OS.cpp b/cpp/src/IcePatch2/OS.cpp
index 1f27c970055..505a5e7185b 100644
--- a/cpp/src/IcePatch2/OS.cpp
+++ b/cpp/src/IcePatch2/OS.cpp
@@ -15,7 +15,7 @@ using namespace OS;
#ifdef _WIN32
int
-OS::stat(const string& path, structstat* buf)
+OS::osstat(const string& path, structstat* buf)
{
return ::_wstat(IceUtil::stringToWstring(path).c_str(), buf);
}
@@ -71,7 +71,7 @@ OS::getcwd(string& cwd)
#else
int
-OS::stat(const string& path, structstat* buf)
+OS::osstat(const string& path, structstat* buf)
{
return ::stat(path.c_str(), buf);
}