From: Samuel Cabrero Date: Tue, 19 Feb 2019 11:41:38 +0000 (+0100) Subject: s4:torture: Add braces X-Git-Tag: talloc-2.3.1~319 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f43e08259c0f41d598f6c7632195e67f80a1f82b;p=thirdparty%2Fsamba.git s4:torture: Add braces Signed-off-by: Samuel Cabrero Reviewed-by: Andrew Bartlett Reviewed-by: Andreas Schneider --- diff --git a/source4/torture/rpc/rpc.c b/source4/torture/rpc/rpc.c index 6c28038b590..5eb17f3cb23 100644 --- a/source4/torture/rpc/rpc.c +++ b/source4/torture/rpc/rpc.c @@ -76,8 +76,9 @@ _PUBLIC_ NTSTATUS torture_rpc_connection(struct torture_context *tctx, struct dcerpc_binding *binding; status = torture_rpc_binding(tctx, &binding); - if (NT_STATUS_IS_ERR(status)) + if (NT_STATUS_IS_ERR(status)) { return status; + } return torture_rpc_connection_with_binding(tctx, binding, p, table); }