From: Nick Porter Date: Thu, 29 May 2025 08:29:48 +0000 (+0100) Subject: Module instance data is const X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74246ee8b04eee9565a93b56eb60b21c4475a8f0;p=thirdparty%2Ffreeradius-server.git Module instance data is const --- diff --git a/src/modules/rlm_crl/rlm_crl.c b/src/modules/rlm_crl/rlm_crl.c index f3be24059cd..0b4763155ce 100644 --- a/src/modules/rlm_crl/rlm_crl.c +++ b/src/modules/rlm_crl/rlm_crl.c @@ -73,7 +73,7 @@ typedef struct { char const *cdp_url; //!< The URL of the CRL. fr_timer_t *ev; //!< When to expire the CRL fr_rb_node_t node; //!< The node in the tree - rlm_crl_t *inst; //!< The instance of the CRL module. + rlm_crl_t const *inst; //!< The instance of the CRL module. } crl_entry_t; typedef struct {