From: Arran Cudbard-Bell Date: Wed, 22 Apr 2026 17:12:40 +0000 (-0400) Subject: rlm_kafka: tidy header includes to match the module standard X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26eb236dc7a4e46e709d1f90c86eb688e83a86da;p=thirdparty%2Ffreeradius-server.git rlm_kafka: tidy header includes to match the module standard Move RCSID / USES_APPLE_DEPRECATED_API above the includes, switch the three `#include "lib/util/..."` to `` to match every other module, group includes by subsystem, and pull pthread.h in alongside the other system headers in anticipation of the upcoming thread-ownership sanity check. --- diff --git a/src/modules/rlm_kafka/rlm_kafka.c b/src/modules/rlm_kafka/rlm_kafka.c index 5bf66b2626d..17f22f17ae8 100644 --- a/src/modules/rlm_kafka/rlm_kafka.c +++ b/src/modules/rlm_kafka/rlm_kafka.c @@ -40,26 +40,31 @@ * * @copyright 2022,2026 Arran Cudbard-Bell (a.cudbardb@freeradius.org) */ -#include "lib/util/debug.h" -#include "lib/util/types.h" -#include "lib/util/value.h" RCSID("$Id$") + USES_APPLE_DEPRECATED_API +#include +#include +#include +#include +#include +#include + +#include + #include #include + #include #include #include #include #include #include -#include -#include -#include -#include #include +#include #include /** Module instance data