Changeset 2007

Show
Ignore:
Timestamp:
05/19/07 14:05:05 (19 months ago)
Author:
dgollub
Message:

Reimplemented recursive support in file-sync. #414
TODO: Test carefully with data and espacilly other object types!

Files:
1 modified

Legend:

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

    r1786 r2007  
    6666                        } else if (!xmlStrcmp(cur->name, (const xmlChar *)"objtype")) { 
    6767                                dir->objtype = g_strdup(str); 
     68                        } else if (!xmlStrcmp(cur->name, (const xmlChar *)"recursive")) { 
     69                                dir->recursive = (g_ascii_strcasecmp(str, "TRUE") == 0); 
    6870                        } 
    6971                        xmlFree(str);