diff options
Diffstat (limited to 'src/include/replication/backup_manifest.h')
-rw-r--r-- | src/include/replication/backup_manifest.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/replication/backup_manifest.h b/src/include/replication/backup_manifest.h index fb1291cbe4d..e7c40474972 100644 --- a/src/include/replication/backup_manifest.h +++ b/src/include/replication/backup_manifest.h @@ -28,7 +28,7 @@ typedef struct backup_manifest_info { BufFile *buffile; pg_checksum_type checksum_type; - pg_sha256_ctx manifest_ctx; + pg_cryptohash_ctx *manifest_ctx; uint64 manifest_size; bool force_encode; bool first_file; @@ -48,5 +48,6 @@ extern void AddWALInfoToBackupManifest(backup_manifest_info *manifest, TimeLineID starttli, XLogRecPtr endptr, TimeLineID endtli); extern void SendBackupManifest(backup_manifest_info *manifest); +extern void FreeBackupManifest(backup_manifest_info *manifest); #endif |