From: Arran Cudbard-Bell Date: Tue, 13 Jun 2017 20:05:27 +0000 (-0400) Subject: constify cs in xlat_redundant_t X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1cb2c045b4d34bd5324046abd5b1ae4a4fa5485;p=thirdparty%2Ffreeradius-server.git constify cs in xlat_redundant_t --- diff --git a/src/main/xlat_func.c b/src/main/xlat_func.c index 11dad2ebcf1..5dba81f1553 100644 --- a/src/main/xlat_func.c +++ b/src/main/xlat_func.c @@ -847,9 +847,9 @@ typedef enum xlat_redundant_type_t { } xlat_redundant_type_t; typedef struct xlat_redundant_t { - xlat_redundant_type_t type; - uint32_t count; - CONF_SECTION *cs; + xlat_redundant_type_t type; + uint32_t count; + CONF_SECTION const *cs; } xlat_redundant_t;