From: Nick Porter Date: Mon, 28 Oct 2024 20:14:08 +0000 (+0000) Subject: Correct fixup of TLS session cache mode X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0174e46adb2cce6107eede2d379198f44d1beaa9;p=thirdparty%2Ffreeradius-server.git Correct fixup of TLS session cache mode --- diff --git a/src/lib/tls/conf.c b/src/lib/tls/conf.c index 100448229f8..8e13f73c06b 100644 --- a/src/lib/tls/conf.c +++ b/src/lib/tls/conf.c @@ -295,7 +295,7 @@ static int tls_conf_parse_cache_mode(TALLOC_CTX *ctx, void *out, void *parent, C WARN("A virtual_server must be provided for stateful caching. " "cache.mode = \"auto\" rewritten to cache.mode = \"stateless\""); cache_stateless: - conf->cache.mode = FR_TLS_CACHE_STATELESS; + cache_mode = FR_TLS_CACHE_STATELESS; break; }