From: Alan T. DeKok Date: Thu, 11 Mar 2021 17:36:44 +0000 (-0500) Subject: use process module, not dynamic client module X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aff09bf7352e8be900a56fd466966c340bc3cc6f;p=thirdparty%2Ffreeradius-server.git use process module, not dynamic client module --- diff --git a/src/lib/server/virtual_servers.c b/src/lib/server/virtual_servers.c index 1e48a4c7e98..c0c35afe0c5 100644 --- a/src/lib/server/virtual_servers.c +++ b/src/lib/server/virtual_servers.c @@ -1863,7 +1863,7 @@ int virtual_server_get_process_by_name(CONF_SECTION *cs, char const *type, modul return -1; } - process = (fr_process_module_t const *) server->dynamic_client_module->module->common; + process = (fr_process_module_t const *) server->process_module->module->common; *method_p = process->process; *ctx = server->process_module->data; return 0;