summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch/IcePatchI.cpp
diff options
context:
space:
mode:
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;
}