From: Nick Porter Date: Tue, 20 May 2025 07:36:54 +0000 (+0100) Subject: Correct comments X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d9bf91cf50ab86fc2563e77bca7c44a93592126;p=thirdparty%2Ffreeradius-server.git Correct comments --- diff --git a/src/lib/util/pair.c b/src/lib/util/pair.c index 1b008190763..8ba85ad365d 100644 --- a/src/lib/util/pair.c +++ b/src/lib/util/pair.c @@ -1454,8 +1454,8 @@ void fr_pair_replace(fr_pair_list_t *list, fr_pair_t *to_replace, fr_pair_t *vp) * @param[in] ctx to allocate new #fr_pair_t in. * @param[out] out Pair we allocated. May be NULL if the caller doesn't * care about manipulating the fr_pair_t. - * @param[in,out] list in search and insert into. - * @param[in] da of attribute to update. + * @param[in,out] list in which to append the pair. + * @param[in] da of attribute to create. * @return * - 0 on success. * - -1 on failure. @@ -1481,8 +1481,8 @@ int fr_pair_append_by_da(TALLOC_CTX *ctx, fr_pair_t **out, fr_pair_list_t *list, * @param[in] ctx to allocate new #fr_pair_t in. * @param[out] out Pair we allocated. May be NULL if the caller doesn't * care about manipulating the fr_pair_t. - * @param[in,out] list in search and insert into. - * @param[in] da of attribute to update. + * @param[in,out] list in which to prepend the pair. + * @param[in] da of attribute to create. * @return * - 0 on success. * - -1 on failure.