diff options
Diffstat (limited to 'cpp/src/IcePatch/NodeI.cpp')
-rw-r--r-- | cpp/src/IcePatch/NodeI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IcePatch/NodeI.cpp b/cpp/src/IcePatch/NodeI.cpp index 67e462b023a..5f63925d5ef 100644 --- a/cpp/src/IcePatch/NodeI.cpp +++ b/cpp/src/IcePatch/NodeI.cpp @@ -82,7 +82,7 @@ IcePatch::FileI::describe(const Ice::Current& current) } ByteSeq -IcePatch::FileI::getBytes(Int startPos, Int howMuch, const Ice::Current& current) +IcePatch::FileI::getBlock(Int n, const Ice::Current& current) { - return ByteSeq(); + return getBZ2(identityToPath(current.identity), n); } |