]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
typos - names were reversed
authorAlan T. DeKok <aland@freeradius.org>
Thu, 10 Oct 2019 17:01:45 +0000 (13:01 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 10 Oct 2019 17:01:45 +0000 (13:01 -0400)
src/lib/unlang/compile.c

index 865ae8e6e842032227033dd1ce8dd29aad10aaac..a93f0761aa10b2cfbc3a52a1aef510ab62f5e8b7 100644 (file)
@@ -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)