1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-03-03 14:52:21 +02:00

Renamed uninit to cleanup.

This commit is contained in:
David Steele 2015-01-31 09:05:05 -05:00
parent 11c257296a
commit cd9df8b4f8
2 changed files with 4 additions and 4 deletions

View File

@ -551,7 +551,7 @@ if (operation_get() eq OP_EXPIRE)
lock_file_remove();
}
backup_uninit();
backup_cleanup();
remote_exit(0);
};

View File

@ -23,7 +23,7 @@ use BackRest::Db;
use Exporter qw(import);
our @EXPORT = qw(backup_init backup_uninit backup_thread_kill archive_push archive_xfer archive_get archive_compress
our @EXPORT = qw(backup_init backup_cleanup backup_thread_kill archive_push archive_xfer archive_get archive_compress
backup backup_expire archive_list_get);
my $oDb;
@ -94,9 +94,9 @@ sub backup_init
}
####################################################################################################################################
# BACKUP_UNINIT
# BACKUP_CLEANUP
####################################################################################################################################
sub backup_uninit
sub backup_cleanup
{
undef($oFile);
}