From: Joseph Sutton Date: Mon, 30 Oct 2023 23:21:26 +0000 (+1300) Subject: s3:rpc_client: Add missing ‘break’ statement X-Git-Tag: talloc-2.4.2~874 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c095ec02ff1a13bed5503a460eb6a8a39f03ade3;p=thirdparty%2Fsamba.git s3:rpc_client: Add missing ‘break’ statement Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/source3/rpc_client/wsp_cli.c b/source3/rpc_client/wsp_cli.c index 4745b694217..b21f55c86f0 100644 --- a/source3/rpc_client/wsp_cli.c +++ b/source3/rpc_client/wsp_cli.c @@ -1413,6 +1413,7 @@ static bool process_query_node(TALLOC_CTX *ctx, break; case eVALUE: process_value_node(ctx, crestriction, node); + break; default: break; }