From: Alan T. DeKok Date: Mon, 22 Jan 2024 19:02:09 +0000 (-0500) Subject: call the correct function X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f71b1f64db4eb34c8e84f7c0e5dba563935244f8;p=thirdparty%2Ffreeradius-server.git call the correct function --- diff --git a/src/protocols/radius/packet.c b/src/protocols/radius/packet.c index da7b368dcb1..be268d385d0 100644 --- a/src/protocols/radius/packet.c +++ b/src/protocols/radius/packet.c @@ -232,7 +232,7 @@ int fr_radius_packet_decode(TALLOC_CTX *ctx, fr_pair_list_t *out, * Merge information from the outside world into our * random pool. */ - fr_rand_seed(packet->data, RADIUS_HEADER_LENGTH); + fr_rand_mixin(packet->data, RADIUS_HEADER_LENGTH); talloc_free(packet_ctx.tmp_ctx); talloc_free(packet_ctx.tags);