]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
variable should be static
authorAlan T. DeKok <aland@freeradius.org>
Wed, 28 Aug 2024 21:56:53 +0000 (17:56 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Wed, 28 Aug 2024 21:56:53 +0000 (17:56 -0400)
src/modules/rlm_python/rlm_python.c

index f4590db1b5ad3daab3573d9a2a208cae7161aff7..6a38b788ffe70febd69b9eb46e5e7f02bb801ecf 100644 (file)
@@ -109,7 +109,7 @@ static conf_parser_t const python_global_config[] = {
 static int libpython_init(void);
 static void libpython_free(void);
 
-global_lib_autoinst_t rlm_python_autoinst = {
+static global_lib_autoinst_t rlm_python_autoinst = {
        .name = "python",
        .config = python_global_config,
        .init = libpython_init,