summaryrefslogtreecommitdiff
path: root/src/driver/tpax_amain.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/driver/tpax_amain.c')
-rw-r--r--src/driver/tpax_amain.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/driver/tpax_amain.c b/src/driver/tpax_amain.c
index 84b15f4..d94eaf0 100644
--- a/src/driver/tpax_amain.c
+++ b/src/driver/tpax_amain.c
@@ -52,8 +52,8 @@ static void tpax_perform_unit_actions(
const struct tpax_driver_ctx * dctx,
struct tpax_unit_ctx * uctx)
{
- (void)dctx;
- (void)uctx;
+ if (dctx->cctx->drvflags & TPAX_DRIVER_EXEC_MODE_WRITE)
+ tpax_archive_append(dctx,uctx);
}
static int tpax_exit(struct tpax_driver_ctx * dctx, int ret)
@@ -91,5 +91,8 @@ int tpax_main(char ** argv, char ** envp, const struct tpax_fd_ctx * fdctx)
}
}
+ if ((dctx->cctx->drvflags & TPAX_DRIVER_EXEC_MODE_WRITE) && dctx->units[0])
+ tpax_archive_seal(dctx);
+
return tpax_exit(dctx,dctx->errv[0] ? TPAX_ERROR : TPAX_OK);
}