From: Alan T. DeKok Date: Wed, 5 Aug 2020 21:03:37 +0000 (-0400) Subject: use braces X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a7b5902cfe6137d60d86a53d0196489eb09f708;p=thirdparty%2Ffreeradius-server.git use braces --- diff --git a/src/lib/unlang/compile.c b/src/lib/unlang/compile.c index c8fe7759230..51cdf4e4e23 100644 --- a/src/lib/unlang/compile.c +++ b/src/lib/unlang/compile.c @@ -2051,7 +2051,7 @@ static unlang_t *compile_section(unlang_t *parent, unlang_compile_t *unlang_ctx, if (mod_type == UNLANG_TYPE_POLICY) { MEM(c->debug_name = talloc_typed_asprintf(c, "policy %s", name1)); - else if (!name2) { + } else if (!name2) { c->debug_name = c->name; } else {