summaryrefslogtreecommitdiffstats
path: root/src/stkutil.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stkutil.c')
-rw-r--r--src/stkutil.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stkutil.c b/src/stkutil.c
index e92add31..d2cd126a 100644
--- a/src/stkutil.c
+++ b/src/stkutil.c
@@ -2324,8 +2324,8 @@ static enum stk_command_parse_result parse_dataobj(
if (comprehension_tlv_iter_get_tag(iter) == entry->type)
break;
- /* Can't skip over Minimum objects */
- if (entry->flags & DATAOBJ_FLAG_MINIMUM) {
+ /* Can't skip over mandatory objects */
+ if (entry->flags & DATAOBJ_FLAG_MANDATORY) {
l2 = NULL;
break;
}
@@ -2352,7 +2352,7 @@ static enum stk_command_parse_result parse_dataobj(
for (; l; l = l->next) {
struct dataobj_handler_entry *entry = l->data;
- if (entry->flags & DATAOBJ_FLAG_MINIMUM)
+ if (entry->flags & DATAOBJ_FLAG_MANDATORY)
minimum_set = FALSE;
}