]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Module instance data is const
authorNick Porter <nick@portercomputing.co.uk>
Thu, 29 May 2025 08:29:48 +0000 (09:29 +0100)
committerNick Porter <nick@portercomputing.co.uk>
Wed, 4 Jun 2025 10:05:22 +0000 (11:05 +0100)
src/modules/rlm_crl/rlm_crl.c

index f3be24059cd8797684841d7ddf76e01194bfe49c..0b4763155ceeee39a57bf676fd9c23839645216a 100644 (file)
@@ -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 {