vici: Remove unreachable code

If list is TRUE any type but VICI_LIST_END and VICI_LIST_ITEM (i.e.
including VICI_END) is already handled in the first block in this
function.
This commit is contained in:
Tobias Brunner
2018-09-11 18:18:50 +02:00
parent 954e75effa
commit a0c302f878
+3 -11
View File
@@ -102,18 +102,10 @@ bool vici_verify_type(vici_type_t type, u_int section, bool list)
DBG1(DBG_ENC, "'%N' outside of section", vici_type_names, type); DBG1(DBG_ENC, "'%N' outside of section", vici_type_names, type);
return FALSE; return FALSE;
} }
if (type == VICI_END) if (type == VICI_END && section)
{ {
if (section) DBG1(DBG_ENC, "'%N' within section", vici_type_names, type);
{ return FALSE;
DBG1(DBG_ENC, "'%N' within section", vici_type_names, type);
return FALSE;
}
if (list)
{
DBG1(DBG_ENC, "'%N' within list", vici_type_names, type);
return FALSE;
}
} }
return TRUE; return TRUE;
} }