From c238e4d4b30540f24298fabb6566c727f8f6cd55 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Fri, 15 Mar 2019 14:28:08 +0100 Subject: [PATCH] protocol: c-api: add proxmox_backup_finish_backup to .h this was missing Signed-off-by: Wolfgang Bumiller --- proxmox-protocol/proxmox-protocol.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/proxmox-protocol/proxmox-protocol.h b/proxmox-protocol/proxmox-protocol.h index 55fc950f..ef4d4c38 100644 --- a/proxmox-protocol/proxmox-protocol.h +++ b/proxmox-protocol/proxmox-protocol.h @@ -69,6 +69,10 @@ extern int proxmox_backup_fixed_data( size_t index, const void *digest); +extern int proxmox_backup_finish_backup( + ProxmoxBackup *self, + int stream, + char **remote_path); typedef struct ProxmoxChunker ProxmoxChunker; extern ProxmoxChunker *proxmox_chunker_new(uint64_t chunk_size_avg);