* @param op to assign to new valuepair.
* @return new valuepair or NULL on error.
*/
-static VALUE_PAIR *fr_pair_make_any(TALLOC_CTX *ctx,
- char const *attribute, char const *value,
- FR_TOKEN op)
+static VALUE_PAIR *fr_pair_make_unknown(TALLOC_CTX *ctx,
+ char const *attribute, char const *value,
+ FR_TOKEN op)
{
VALUE_PAIR *vp;
DICT_ATTR const *da;
*/
da = dict_attrbyname(attrname);
if (!da) {
- vp = fr_pair_make_any(ctx, attrname, value, op);
+ vp = fr_pair_make_unknown(ctx, attrname, value, op);
if (vp && vps) fr_pair_add(vps, vp);
return vp;
}