vp = fr_cursor_next(&cursor)) {
fr_dict_vendor_t const *vendor;
fr_table_num_ordered_t const *type;
+ size_t i;
if (vp->da->flags.has_tag) {
RIDEBUG2("&%s:%s:%i %s %pV",
if (!RDEBUG_ENABLED4) continue;
- type = fr_value_box_type_table;
- while (type->name) {
+ for (i = 0; i < fr_value_box_type_table_len; i++) {
int pad;
fr_value_box_t *dst = NULL;
+ type = &fr_value_box_type_table[i];
+
if ((fr_type_t) type->value == vp->vp_type) goto next_type;
switch (type->value) {
next_type:
talloc_free(dst);
- type++;
}
}
REXDENT();