Add more functions to the propagation visitor.

This commit is contained in:
Andreas Schneider 2008-05-19 11:30:41 +02:00
parent c325f7d5e1
commit d3f8e4aa7d

View File

@ -383,8 +383,14 @@ static int csync_propagation_visitor(void *obj, void *data) {
}
break;
case CSYNC_INSTRUCTION_SYNC:
if (csync_sync_file(ctx, st) < 0) {
goto err;
}
break;
case CSYNC_INSTRUCTION_REMOVE:
if (csync_remove_file(ctx, st) < 0) {
goto err;
}
break;
default:
break;