diff options
-rw-r--r-- | src/deliverable.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/deliverable.c b/src/deliverable.c index 1a64b42..f97c3d5 100644 --- a/src/deliverable.c +++ b/src/deliverable.c @@ -5,6 +5,14 @@ extern struct OMC_GLOBAL globals; +static void ini_has_key_required(struct INIFILE *ini, const char *section_name, char *key) { + int status = ini_has_key(ini, section_name, key); + if (!status) { + SYSERROR("%s:%s key is required but not defined", section_name, key); + exit(1); + } +} + static void ini_getval_required(struct INIFILE *ini, char *section_name, char *key, unsigned type, union INIVal *val) { int status = ini_getval(ini, section_name, key, type, val); if (status || isempty(val->as_char_p)) { |