From 24d1241e31c2bf8fb8be2093462012863f9d61df Mon Sep 17 00:00:00 2001 From: Jennifer Richards Date: Tue, 6 Jun 2017 14:14:38 -0400 Subject: [PATCH] Fix misleading indentation --- common/tr_config.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/common/tr_config.c b/common/tr_config.c index b451860..4f35358 100644 --- a/common/tr_config.c +++ b/common/tr_config.c @@ -1313,17 +1313,17 @@ static TR_RP_CLIENT *tr_cfg_parse_one_rp_client(TALLOC_CTX *mem_ctx, json_t *jre if (realm!=NULL) tr_free_name(realm); - if (*rc==TR_CFG_SUCCESS) - talloc_steal(mem_ctx, client); - else { - talloc_free(client); - client=NULL; - } - - talloc_free(tmp_ctx); - return client; + if (*rc==TR_CFG_SUCCESS) + talloc_steal(mem_ctx, client); + else { + talloc_free(client); + client=NULL; } + talloc_free(tmp_ctx); + return client; +} + /* Determine whether the realm is an RP realm */ static int tr_cfg_is_rp_realm(json_t *jrealm) { -- 2.1.4