[pbs-devel] [PATCH proxmox-backup-qemu] simpletest: Fix build after API change
Christoph Heiss
c.heiss at proxmox.com
Thu Jan 12 11:35:17 CET 2023
This was broken long ago, first with 3edf5d1 AFAICT.
Also fixes the make dependency of `simpletest` on `build`, so that `make
simpletest` works on a fresh checkout.
Fixes: 3edf5d1 ("add compress and encrypt paramaters")
Fixes: d8aa155 ("api: add master key support")
Signed-off-by: Christoph Heiss <c.heiss at proxmox.com>
---
Makefile | 2 ++
simpletest.c | 5 +++--
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index ec6bc12..5fe9bc5 100644
--- a/Makefile
+++ b/Makefile
@@ -44,6 +44,8 @@ $(MAIN_DEB): build
cd build; dpkg-buildpackage -b -us -uc --no-pre-clean
lintian $(DEBS)
+proxmox-backup-qemu.h: build
+
simpletest: simpletest.c proxmox-backup-qemu.h
gcc simpletest.c -o simpletest -lc -Wl,-rpath=./target/$(BUILD_MODE) -L ./target/$(BUILD_MODE) -l proxmox_backup_qemu
diff --git a/simpletest.c b/simpletest.c
index 9d00a80..ceb5afd 100644
--- a/simpletest.c
+++ b/simpletest.c
@@ -24,8 +24,9 @@ void main(int argc, char **argv) {
char *fingerprint = getenv("PBS_FINGERPRINT");
- ProxmoxBackupHandle *pbs = proxmox_backup_new
- (repository, backup_id, backup_time, PROXMOX_BACKUP_DEFAULT_CHUNK_SIZE, password, NULL, NULL, fingerprint, &pbs_error);
+ ProxmoxBackupHandle *pbs = proxmox_backup_new(
+ repository, backup_id, backup_time, PROXMOX_BACKUP_DEFAULT_CHUNK_SIZE,
+ password, NULL, NULL, NULL, false, false, fingerprint, &pbs_error);
if (pbs == NULL) {
fprintf(stderr, "proxmox_backup_new failed - %s\n", pbs_error);
--
2.34.1
More information about the pbs-devel
mailing list