From a9169f12e8417b91a7dcfea3b678d09ed2697b62 Mon Sep 17 00:00:00 2001 From: Dwayne Boone Date: Fri, 6 Jun 2008 12:46:58 -0230 Subject: Bug 3014 - isAbsolute incorrect --- cpp/src/IcePatch2/Server.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cpp/src/IcePatch2/Server.cpp') diff --git a/cpp/src/IcePatch2/Server.cpp b/cpp/src/IcePatch2/Server.cpp index b5a7a5f828d..c7aeeb9c3cc 100644 --- a/cpp/src/IcePatch2/Server.cpp +++ b/cpp/src/IcePatch2/Server.cpp @@ -9,6 +9,7 @@ #include #include +#include #include #include #include @@ -118,7 +119,7 @@ IcePatch2::PatcherService::start(int argc, char* argv[]) try { - if(!isAbsolute(dataDir)) + if(!IceUtilInternal::isAbsolutePath(dataDir)) { string cwd; if(OS::getcwd(cwd) != 0) -- cgit v1.2.3