From f43e08259c0f41d598f6c7632195e67f80a1f82b Mon Sep 17 00:00:00 2001 From: Samuel Cabrero Date: Tue, 19 Feb 2019 12:41:38 +0100 Subject: [PATCH] s4:torture: Add braces Signed-off-by: Samuel Cabrero Reviewed-by: Andrew Bartlett Reviewed-by: Andreas Schneider --- source4/torture/rpc/rpc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } -- 2.47.3