From f11f15e825d658938339e52aaae9828542cd4430 Mon Sep 17 00:00:00 2001 From: Vojtech Vilimek Date: Tue, 17 Jun 2025 15:34:43 +0200 Subject: [PATCH] CLI: Add missing semicolon for option RESTRICT --- sysdep/unix/config.Y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdep/unix/config.Y b/sysdep/unix/config.Y index 1119baee8..361ebd180 100644 --- a/sysdep/unix/config.Y +++ b/sysdep/unix/config.Y @@ -143,7 +143,7 @@ cli_opts_begin: { cli_opts_block: /* EMPTY */ | - cli_opts_block RESTRICT { this_cli_config->restricted = 1; } + cli_opts_block RESTRICT ';' { this_cli_config->restricted = 1; } ; conf: debug_unix ; -- 2.47.2