@@ -392,7 +392,7 @@ cancel_confirmed_commit(clixon_handle h)
392392
393393 confirmed_commit_state_set (h , INACTIVE );
394394
395- if (xmldb_delete (h , "rollback" ) < 0 )
395+ if (xmldb_delete (h , "rollback" , 0 ) < 0 )
396396 clixon_err (OE_DB , 0 , "Error deleting the rollback configuration" );
397397 return 0 ;
398398}
@@ -604,7 +604,7 @@ handle_confirmed_commit(clixon_handle h,
604604 /* There was no subsequent confirmed-commit, meaning this is the end of the confirmed/confirming sequence;
605605 * The new configuration is already committed to running and the rollback database can now be deleted
606606 */
607- if (xmldb_delete (h , "rollback" ) < 0 ) {
607+ if (xmldb_delete (h , "rollback" , 0 ) < 0 ) {
608608 clixon_err (OE_DB , 0 , "Error deleting the rollback configuration" );
609609 goto done ;
610610 }
@@ -685,7 +685,7 @@ do_rollback(clixon_handle h,
685685 }
686686 cbuf_free (cbret );
687687
688- if (xmldb_delete (h , "rollback" ) < 0 ) {
688+ if (xmldb_delete (h , "rollback" , 0 ) < 0 ) {
689689 clixon_log (h , LOG_WARNING , "A rollback occurred but the rollback_db wasn't deleted." );
690690 errstate |= ROLLBACK_DB_NOT_DELETED ;
691691 goto done ;
0 commit comments