| 743 | | OSyncList *o = osync_plugin_ressource_get_objformat_sinks(res); |
|---|
| 744 | | for (; o; o = o->next) { |
|---|
| 745 | | OSyncObjFormatSink *format_sink = (OSyncObjFormatSink *) o->data; |
|---|
| 746 | | const char *objformat_str = osync_objformat_sink_get_objformat(format_sink); |
|---|
| 747 | | OSyncObjFormat *objformat = osync_format_env_find_objformat(formatenv, objformat_str); |
|---|
| 748 | | const char *objtype = osync_objformat_get_objtype(objformat); |
|---|
| 749 | | |
|---|
| 750 | | osync_trace(TRACE_INTERNAL, "objtype: %s\n", objtype); |
|---|
| 751 | | |
|---|
| 752 | | /* Check for ObjType sink */ |
|---|
| 753 | | if ((sink = osync_plugin_info_find_objtype(info, objtype))) |
|---|
| 754 | | osync_objtype_sink_set_available(sink, TRUE); |
|---|
| 755 | | } |
|---|
| | 745 | const char *objtype = osync_plugin_ressource_get_objtype(res); |
|---|
| | 746 | /* Check for ObjType sink */ |
|---|
| | 747 | if ((sink = osync_plugin_info_find_objtype(info, objtype))) |
|---|
| | 748 | osync_objtype_sink_set_available(sink, TRUE); |
|---|