Commit 835eddf8 authored by Jim Fulton's avatar Jim Fulton

Fixed a serialization bug that is wildly unlikely to have ever been

effective. :)
parent 38ae4d5d
...@@ -542,7 +542,7 @@ class ClientCache(object): ...@@ -542,7 +542,7 @@ class ClientCache(object):
write('f'+pack(">I", nfreebytes)) write('f'+pack(">I", nfreebytes))
# Now write the rest of the allocation block header and object data. # Now write the rest of the allocation block header and object data.
write(pack(">8s8s8shi", write(pack(">8s8s8shI",
oid, start_tid, end_tid or z64, len(version), len(data), oid, start_tid, end_tid or z64, len(version), len(data),
)) ))
if version: if version:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment