commit | 08aa70ad6b34ce9562bde91cae4fc33f907ba2a2 | [log] [tgz] |
---|---|---|
author | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Tue Jan 22 22:16:25 2013 -0800 |
committer | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Tue Jan 22 22:16:25 2013 -0800 |
tree | e53b8e7d654410f1f84dac88db1e92a8a646e7ca | |
parent | 053e5ac0df750cc893d8e3e3510517f8f3b4eef6 [diff] [blame] |
Adding and finishing test for adding remotely fetched actions
diff --git a/ccnx/ccnx-common.h b/ccnx/ccnx-common.h index 96f60ff..6d17116 100644 --- a/ccnx/ccnx-common.h +++ b/ccnx/ccnx-common.h
@@ -89,9 +89,9 @@ inline BytesPtr serializeMsg(const Msg &msg) { - int size = msg->ByteSize (); + int size = msg.ByteSize (); BytesPtr bytes (new Bytes (size)); - msg->SerializeToArray (head(*bytes), size); + msg.SerializeToArray (head(*bytes), size); return bytes; }