the rest of the code in the server should take care of either
not setting vp->op, or setting it to T_OP_EQ after using the
operator.
for (vp = fr_pair_list_head(list);
vp;
vp = fr_pair_list_next(list, vp)) {
- fr_token_t op;
-
if (inst->ht && fr_hash_table_find(inst->ht, vp->da)) continue;
/*
*/
if (compat && (vp->da == attr_user_password)) continue;
- /*
- * Print all of the attributes, operator should always be '='.
- */
- op = vp->op;
- vp->op = T_OP_EQ;
fr_pair_fprint(out, vp);
- vp->op = op;
}
}