Changeset 3511

Show
Ignore:
Timestamp:
08/06/08 08:52:04 (4 months ago)
Author:
dgollub
Message:

Resource API renaming related build fixes.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • plugins/file-sync/src/file_sync.c

    r3444 r3511  
    489489 
    490490                const char *objtype = osync_objtype_sink_get_name(dir->sink); 
    491                 OSyncPluginRessource *res = osync_plugin_config_find_active_ressource(config, objtype); 
    492                 dir->path = osync_plugin_ressource_get_path(res); 
     491                OSyncPluginResource *res = osync_plugin_config_find_active_resource(config, objtype); 
     492                dir->path = osync_plugin_resource_get_path(res); 
    493493                if (!dir->path) { 
    494494                        osync_error_set(error, OSYNC_ERROR_MISCONFIGURATION, "Path for object type \"%s\" is not configured.", objtype); 
     
    551551 
    552552/* Here we actually tell opensync which sinks are available. For this plugin, we 
    553  * just report all objtype as available. Since the ressource are configured like this. */ 
     553 * just report all objtype as available. Since the resource are configured like this. */ 
    554554static osync_bool osync_filesync_discover(void *data, OSyncPluginInfo *info, OSyncError **error) 
    555555{