]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Call the right underlying function
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Wed, 23 Jun 2021 19:39:58 +0000 (14:39 -0500)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 24 Jun 2021 00:08:46 +0000 (19:08 -0500)
src/lib/server/pair.h

index 2877964344c8b7d394dbe965971451630e56c967..203d81e693b769e4d98624c9f86e10722db8feb0 100644 (file)
@@ -34,7 +34,7 @@ RCSIDH(server_pair_h, "$Id$")
  *     - 0 on success.
  *     - -1 on failure.
  */
-#define pair_append_request(_attr, _da) fr_pair_prepend_by_da(request->request_ctx, _attr, &request->request_pairs, _da)
+#define pair_append_request(_attr, _da) fr_pair_append_by_da(request->request_ctx, _attr, &request->request_pairs, _da)
 
 /** Allocate and append a fr_pair_t to reply list
  *