# # patch "ChangeLog" # from [a9ca443d4b127d6848986edda8e120dd19fa2374] # to [d10601b17f05be90a43ef77a5f2d212cb7e9659b] # # patch "packet.cc" # from [7f4cc56b5a4fd62495fcec98bcc2e67c6ddb96a8] # to [478a95c883062f409c2d9558dd3177e9d5e6ac2c] # --- ChangeLog +++ ChangeLog @@ -1,5 +1,9 @@ 2005-04-17 Matt Johnston + * packet.cc: fix up unit test compilation. + +2005-04-17 Matt Johnston + * vocab_terms.hh: remove commented out lines. 2005-04-17 Matt Johnston --- packet.cc +++ packet.cc @@ -1377,13 +1377,13 @@ packet_writer pw(oss); // an fdata packet - file_data fdata("this is some file data"); + file_data fdata(data("this is some file data")); file_id fid; calculate_ident(fdata, fid); pw.consume_file_data(fid, fdata); // an fdelta packet - file_data fdata2("this is some file data which is not the same as the first one"); + file_data fdata2(data("this is some file data which is not the same as the first one")); file_id fid2; calculate_ident(fdata2, fid); delta del;