diff --git a/src/lib/util/dict.c b/src/lib/util/dict.c index fbf8fa3f1265..64e4fc6fdc41 100644 --- a/src/lib/util/dict.c +++ b/src/lib/util/dict.c @@ -2096,8 +2096,6 @@ int fr_dict_unknown_vendor_afrom_num(TALLOC_CTX *ctx, fr_dict_attr_t **out, } /** Allocates an unknown attribute - * - * @copybrief fr_dict_unknown_from_fields * * @note If vendor != 0, an unknown vendor (may) also be created, parented by * the correct EVS or VSA attribute. This is accessible via da->parent, @@ -2186,7 +2184,7 @@ fr_dict_attr_t const *fr_dict_unknown_afrom_fields(TALLOC_CTX *ctx, fr_dict_attr * - Attr-%d * - Attr-%d.%d.%d... * - * @copybrief fr_dict_unknown_from_fields + * @copybrief fr_dict_unknown_afrom_fields * * @param[in] ctx to allocate the attribute in. * @param[out] out Where to write the new attribute to. @@ -2226,7 +2224,7 @@ static int dict_unknown_attr_afrom_num(TALLOC_CTX *ctx, fr_dict_attr_t **out, * - Attr-%d * - Attr-%d.%d.%d... * - * @copybrief fr_dict_unknown_from_fields + * @copybrief fr_dict_unknown_afrom_fields * * @note If vendor != 0, an unknown vendor (may) also be created, parented by * the correct EVS or VSA attribute. This is accessible via vp->parent, diff --git a/src/lib/util/dlist.h b/src/lib/util/dlist.h index df8b37009c8a..82e72a6fb3f3 100644 --- a/src/lib/util/dlist.h +++ b/src/lib/util/dlist.h @@ -95,7 +95,7 @@ static inline void fr_dlist_entry_init(fr_dlist_t *entry) * @note This variant *DOES* perform talloc validation. All items inserted * into the list must be allocated with talloc. * - * @copybrief fr_dlist_init. + * @copybrief fr_dlist_init * * @param[in] _head structure to initialise. * @param[in] _type of item being stored in the list, e.g. fr_value_box_t,