]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
xlat args are static
authorNick Porter <nick@portercomputing.co.uk>
Mon, 18 Dec 2023 11:22:40 +0000 (11:22 +0000)
committerNick Porter <nick@portercomputing.co.uk>
Mon, 18 Dec 2023 11:22:40 +0000 (11:22 +0000)
src/lib/eap_aka_sim/xlat.c

index ffd966ed73fa8ffb8aa1a34189f3d087524f1087..56777feca624b70b5e938f4314a7ad66a1da37a5 100644 (file)
@@ -179,8 +179,7 @@ static xlat_action_t aka_sim_id_3gpp_temporary_id_key_index_xlat(TALLOC_CTX *ctx
        return XLAT_ACTION_DONE;
 }
 
-extern xlat_arg_parser_t aka_sim_3gpp_temporary_id_decrypt_xlat_args[];
-xlat_arg_parser_t aka_sim_3gpp_temporary_id_decrypt_xlat_args[] = {
+static xlat_arg_parser_t aka_sim_3gpp_temporary_id_decrypt_xlat_args[] = {
        { .required = true, .concat = true, .single = false, .type = FR_TYPE_STRING,
          .func = NULL, .uctx = NULL },
        { .required = true, .concat = true, .single = false, .type = FR_TYPE_OCTETS,
@@ -325,8 +324,7 @@ static xlat_action_t aka_sim_3gpp_temporary_id_decrypt_xlat(TALLOC_CTX *ctx, fr_
        return XLAT_ACTION_DONE;
 }
 
-extern xlat_arg_parser_t aka_sim_3gpp_temporary_id_encrypt_xlat_args[];
-xlat_arg_parser_t aka_sim_3gpp_temporary_id_encrypt_xlat_args[] = {
+static xlat_arg_parser_t aka_sim_3gpp_temporary_id_encrypt_xlat_args[] = {
        { .required = true, .concat = true, .single = false, .type = FR_TYPE_STRING     },
        { .required = true, .concat = true, .single = false, .type = FR_TYPE_OCTETS     },
        { .required = true, .concat = false, .single = true, .type = FR_TYPE_UINT8      },