From: Arran Cudbard-Bell Date: Wed, 28 Aug 2024 16:56:35 +0000 (-0500) Subject: NYI X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e45643d808750f31084cd44f1498d1dff9631ae3;p=thirdparty%2Ffreeradius-server.git NYI --- diff --git a/src/modules/rlm_cipher/rlm_cipher.c b/src/modules/rlm_cipher/rlm_cipher.c index 24fda7f2b4c..a52342ae064 100644 --- a/src/modules/rlm_cipher/rlm_cipher.c +++ b/src/modules/rlm_cipher/rlm_cipher.c @@ -318,6 +318,7 @@ static int cipher_type_parse(UNUSED TALLOC_CTX *ctx, void *out, UNUSED void *par case RLM_CIPHER_TYPE_RSA: break; + case RLM_CIPHER_TYPE_SYMMETRIC: case RLM_CIPHER_TYPE_INVALID: cf_log_err(ci, "Invalid cipher type \"%s\"", type_str); return -1; @@ -1258,6 +1259,7 @@ static int mod_thread_instantiate(module_thread_inst_ctx_t const *mctx) talloc_set_type(mctx->thread, rlm_cipher_rsa_thread_inst_t); return cipher_rsa_thread_instantiate(mctx); + case RLM_CIPHER_TYPE_SYMMETRIC: case RLM_CIPHER_TYPE_INVALID: fr_assert(0); }