aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-04-15 00:54:22 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-04-15 01:03:36 -0400
commitad9374179faa76476affb1cb9e2d2345f83ff1b1 (patch)
tree2e36872933c6c70570aeaaf1077127ceac701fbe
parentbe9f8d203eb0d9f78efd7be058ca37fd182b6e20 (diff)
downloadstasis-ad9374179faa76476affb1cb9e2d2345f83ff1b1.tar.gz
Make meta:mission a required section key pair
-rw-r--r--src/deliverable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deliverable.c b/src/deliverable.c
index 31d7924..002bab3 100644
--- a/src/deliverable.c
+++ b/src/deliverable.c
@@ -464,7 +464,7 @@ static int populate_delivery_ini(struct Delivery *ctx) {
runtime_apply(rt);
ctx->runtime.environ = rt;
- ini_getval(ini, "meta", "mission", INIVAL_TYPE_STR, &val);
+ ini_getval_required(ini, "meta", "mission", INIVAL_TYPE_STR, &val);
conv_str(&ctx->meta.mission, val);
if (!strcasecmp(ctx->meta.mission, "hst")) {