From: Alan T. DeKok Date: Thu, 10 Oct 2019 17:01:45 +0000 (-0400) Subject: typos - names were reversed X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc44cc2ece68773c097db5bdfb4b62eb32683151;p=thirdparty%2Ffreeradius-server.git typos - names were reversed --- diff --git a/src/lib/unlang/compile.c b/src/lib/unlang/compile.c index 865ae8e6e84..a93f0761aa1 100644 --- a/src/lib/unlang/compile.c +++ b/src/lib/unlang/compile.c @@ -2824,13 +2824,13 @@ static unlang_t *compile_load_balance_subsection(unlang_t *parent, unlang_compil static unlang_t *compile_load_balance(unlang_t *parent, unlang_compile_t *unlang_ctx, CONF_SECTION *cs) { - return compile_load_balance_subsection(parent, unlang_ctx, cs, UNLANG_TYPE_REDUNDANT_LOAD_BALANCE); + return compile_load_balance_subsection(parent, unlang_ctx, cs, UNLANG_TYPE_LOAD_BALANCE); } static unlang_t *compile_redundant_load_balance(unlang_t *parent, unlang_compile_t *unlang_ctx, CONF_SECTION *cs) { - return compile_load_balance_subsection(parent, unlang_ctx, cs, UNLANG_TYPE_LOAD_BALANCE); + return compile_load_balance_subsection(parent, unlang_ctx, cs, UNLANG_TYPE_REDUNDANT_LOAD_BALANCE); } static unlang_t *compile_parallel(unlang_t *parent, unlang_compile_t *unlang_ctx, CONF_SECTION *cs)