From: <dg...@su...> - 2009-01-31 17:06:47
|
Author: dgollub Date: Sat Jan 31 18:05:12 2009 New Revision: 5243 URL: http://www.opensync.org/changeset/5243 Log: The mock-format plugin assigns the marshal function to all formats, even if it's only valid for one format Modified: trunk/tests/mock-plugin/mock_format.c Modified: trunk/tests/mock-plugin/mock_format.c ============================================================================== --- trunk/tests/mock-plugin/mock_format.c Sat Jan 31 18:00:28 2009 (r5242) +++ trunk/tests/mock-plugin/mock_format.c Sat Jan 31 18:05:12 2009 (r5243) @@ -238,6 +238,7 @@ osync_objformat_set_copy_func(format, copy_file); osync_objformat_set_create_func(format, create_file); + /* TODO ... marshal function is only valid for mockformat1 not mockformat2! */ osync_objformat_set_marshal_func(format, marshal_file); osync_objformat_set_demarshal_func(format, demarshal_file); } |