Changeset 3372
- Timestamp:
- 06/16/08 20:58:07 (4 months ago)
- Files:
-
- trunk/tools/osyncplugin.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tools/osyncplugin.c
r3371 r3372 317 317 osync_plugin_info_set_config(plugin_info, config); 318 318 319 #if 0 /* Not ready for prime-time (dgollub, 20080613) */320 319 /** Redudant(aka. stolen) code from opensync/client/opensync_client.c */ 321 320 /* Enable active sinks */ … … 330 329 const char *objformat_str = osync_objformat_sink_get_objformat(format_sink); 331 330 OSyncObjFormat *objformat = osync_format_env_find_objformat(format_env, objformat_str); 332 const char *objtype = osync_objformat_get_objtype(objformat);; 331 332 if (!objformat) { 333 osync_error_set(error, OSYNC_ERROR_MISCONFIGURATION, "Couldn't find object format \"%s\"!", objformat_str); 334 goto error_free_pluginconfig; 335 } 336 337 const char *objtype = osync_objformat_get_objtype(objformat); 333 338 334 339 /* Check for ObjType sink */ … … 346 351 347 352 osync_plugin_config_unref(config); 348 #endif /* Not ready. */349 353 350 354 }
