From: <svn...@op...> - 2009-06-23 10:24:53
|
Author: bricks Date: Tue Jun 23 12:23:59 2009 New Revision: 5683 URL: http://www.opensync.org/changeset/5683 Log: updated file format for latest osync_format_env_register_converter api changes Modified: plugins/file-sync/src/file.c Modified: plugins/file-sync/src/file.c ============================================================================== --- plugins/file-sync/src/file.c Mon Jun 22 01:52:43 2009 (r5682) +++ plugins/file-sync/src/file.c Tue Jun 23 12:23:59 2009 (r5683) @@ -240,14 +240,14 @@ if (!conv) return FALSE; - osync_format_env_register_converter(env, conv); + osync_format_env_register_converter(env, conv, error); osync_converter_unref(conv); conv = osync_converter_new(OSYNC_CONVERTER_ENCAP, plain, file, conv_plain_to_file, error); if (!conv) return FALSE; - osync_format_env_register_converter(env, conv); + osync_format_env_register_converter(env, conv, error); osync_converter_unref(conv); return TRUE; } |