summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch/FileLocator.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-06-26 23:24:58 +0000
committerMarc Laukien <marc@zeroc.com>2002-06-26 23:24:58 +0000
commit844ec1a60c75b883e44cc8906e536b7fba3509a0 (patch)
treed431701690080bd2227b8f04a6d47548020a95e9 /cpp/src/IcePatch/FileLocator.cpp
parentconst correctness (diff)
downloadice-844ec1a60c75b883e44cc8906e536b7fba3509a0.tar.bz2
ice-844ec1a60c75b883e44cc8906e536b7fba3509a0.tar.xz
ice-844ec1a60c75b883e44cc8906e536b7fba3509a0.zip
case insensitivity fixes
Diffstat (limited to 'cpp/src/IcePatch/FileLocator.cpp')
-rw-r--r--cpp/src/IcePatch/FileLocator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IcePatch/FileLocator.cpp b/cpp/src/IcePatch/FileLocator.cpp
index d8ad3fb02e2..9809758da3c 100644
--- a/cpp/src/IcePatch/FileLocator.cpp
+++ b/cpp/src/IcePatch/FileLocator.cpp
@@ -28,7 +28,7 @@ IcePatch::FileLocator::locate(const ObjectAdapterPtr& adapter, const Current& cu
//
// Check whether the path is valid.
//
- string path = identityToPath(current.identity);
+ string path = identityToPath(current.id);
if(path.empty()) // Empty paths are not permissible.
{