From f8f36b89fd2e11412b5be668aadd8beca50ebba4 Mon Sep 17 00:00:00 2001 From: Christoph Heiss Date: Thu, 12 Jan 2023 11:35:17 +0100 Subject: [PATCH] simpletest: Fix build after API change 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 --- 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);