summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch/IcePatchI.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-09-11 23:38:29 +0000
committerMarc Laukien <marc@zeroc.com>2002-09-11 23:38:29 +0000
commita4cf1dbc4b6b3b66a8158e887d2a3744f043435e (patch)
tree5fd2d042a22ec6a30bb590d88036a0079bc6bb07 /cpp/src/IcePatch/IcePatchI.cpp
parentfixes (diff)
downloadice-a4cf1dbc4b6b3b66a8158e887d2a3744f043435e.tar.bz2
ice-a4cf1dbc4b6b3b66a8158e887d2a3744f043435e.tar.xz
ice-a4cf1dbc4b6b3b66a8158e887d2a3744f043435e.zip
fixes
Diffstat (limited to 'cpp/src/IcePatch/IcePatchI.cpp')
-rw-r--r--cpp/src/IcePatch/IcePatchI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IcePatch/IcePatchI.cpp b/cpp/src/IcePatch/IcePatchI.cpp
index 5dbf5709caa..c50661455b7 100644
--- a/cpp/src/IcePatch/IcePatchI.cpp
+++ b/cpp/src/IcePatch/IcePatchI.cpp
@@ -83,7 +83,7 @@ IcePatch::DirectoryI::describe(const Current& current) const
// No mutex lock necessary.
DirectoryDescPtr desc = new DirectoryDesc;
desc->md5 = readMD5(current);
- desc->directory = DirectoryPrx::uncheckedCast(_adapter->createProxy(current.id));
+ desc->dir = DirectoryPrx::uncheckedCast(_adapter->createProxy(current.id));
return desc;
}
@@ -174,7 +174,7 @@ IcePatch::RegularI::describe(const Current& current) const
// No mutex lock necessary.
RegularDescPtr desc = new RegularDesc;
desc->md5 = readMD5(current);
- desc->regular = RegularPrx::uncheckedCast(_adapter->createProxy(current.id));
+ desc->reg = RegularPrx::uncheckedCast(_adapter->createProxy(current.id));
return desc;
}