--- trunk/bin/BackupPC_tarIncCreate 2006/01/26 17:13:55 297 +++ trunk/bin/BackupPC_tarIncCreate 2006/01/31 22:04:47 329 @@ -160,7 +160,6 @@ my $sth_inc_size = $dbh->prepare(qq{ update backups set inc_size = ?, - parts = ?, inc_deleted = false where id = ? }); @@ -310,7 +309,6 @@ $sth_inc_size->execute( $total_increment_size, - $part, $backup_id ); @@ -378,7 +376,7 @@ rmtree($tar_path); my $sth = $dbh->prepare(qq{ - update backups set inc_size = 0, parts = 0, inc_deleted = true + update backups set inc_size = 0, inc_deleted = true where id = ? }); $sth->execute($backup_id);