From: Arran Cudbard-Bell Date: Tue, 6 May 2025 17:16:55 +0000 (-0600) Subject: Functions shouldn't have braces X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64ab258f7ae4ded2d49580d6916d79986ca2bdc0;p=thirdparty%2Ffreeradius-server.git Functions shouldn't have braces --- diff --git a/src/lib/unlang/function.c b/src/lib/unlang/function.c index 663e7e49e20..4ed3886cde6 100644 --- a/src/lib/unlang/function.c +++ b/src/lib/unlang/function.c @@ -342,7 +342,7 @@ void unlang_function_init(void) .interpret = unlang_function_call, .signal = unlang_function_signal, .dump = unlang_function_dump, - .flag = UNLANG_OP_FLAG_DEBUG_BRACES | UNLANG_OP_FLAG_RETURN_POINT, + .flag = UNLANG_OP_FLAG_RETURN_POINT, .frame_state_size = sizeof(unlang_frame_state_func_t), .frame_state_type = "unlang_frame_state_func_t", });