MDEV-32932 fix comments to match the code

followup for 1c55b845e0
This commit is contained in:
Sergei Golubchik 2024-04-22 15:27:14 +02:00
parent 018d537ec1
commit 52529a528d
2 changed files with 4 additions and 4 deletions

View file

@ -1356,7 +1356,7 @@ out:
lsn_t server_lsn_after_lock;
extern void backup_wait_for_lsn(lsn_t lsn);
/** Release resources after backup_start() */
/** Release resources after backup_files() */
void backup_release()
{
if (opt_lock_ddl_per_table) {
@ -1372,7 +1372,7 @@ void backup_release()
static const char *default_buffer_pool_file = "ib_buffer_pool";
/** Finish after backup_start() and backup_release() */
/** Finish after backup_files() and backup_release() */
bool backup_finish(ds_ctxt *ds_data)
{
/* Copy buffer pool dump or LRU dump */

View file

@ -23,9 +23,9 @@ equal_paths(const char *first, const char *second);
/** Start --backup */
bool backup_files(ds_ctxt *ds_data, const char *from);
/** Release resources after backup_start() */
/** Release resources after backup_files() */
void backup_release();
/** Finish after backup_start() and backup_release() */
/** Finish after backup_files() and backup_release() */
bool backup_finish(ds_ctxt *ds_data);
bool
apply_log_finish();