From: <svn...@op...> - 2009-06-27 21:00:15
|
Author: scriptor Date: Sat Jun 27 22:58:53 2009 New Revision: 5689 URL: http://www.opensync.org/changeset/5689 Log: Adjusted arguments list with calls to osync_format_env_register_converter() according to http://opensync.org/changeset/5671 See also http://opensync.org/ticket/1087 Modified: plugins/ldap-sync/src/ldap_format.c Modified: plugins/ldap-sync/src/ldap_format.c ============================================================================== --- plugins/ldap-sync/src/ldap_format.c Sat Jun 27 22:58:43 2009 (r5688) +++ plugins/ldap-sync/src/ldap_format.c Sat Jun 27 22:58:53 2009 (r5689) @@ -7014,7 +7014,7 @@ } #ifdef ENABLE_DETECTOR_FUNCTIONS - osync_format_env_register_converter(env, conv); + osync_format_env_register_converter(env, conv, error); #endif osync_converter_unref(conv); @@ -7055,7 +7055,7 @@ } /* register converter */ - osync_format_env_register_converter(env, conv); + osync_format_env_register_converter(env, conv, error); osync_converter_unref(conv); osync_trace(TRACE_INTERNAL, "%s:%i:%s(): Registering conversion from \"%s\" to \"%s\" for objtype \"%s\" with the converter function being located at address %p\n", __FILE__, __LINE__, __func__, format_name, other_format_name, objtype, converter1); @@ -7071,7 +7071,7 @@ } /* register converter */ - osync_format_env_register_converter(env, conv); + osync_format_env_register_converter(env, conv, error); osync_converter_unref(conv); osync_trace(TRACE_INTERNAL, "%s:%i:%s(): Registering conversion from \"%s\" to \"%s\" for objtype \"%s\" with the converter function being located at address %p\n", __FILE__, __LINE__, __func__, other_format_name, format_name, objtype, converter2); |