From 46a26f30de0b4247b7cab1303e631f01726a27ab Mon Sep 17 00:00:00 2001 From: Dmitrii <naidv88@gmail.com> Date: Thu, 16 Dec 2021 16:59:46 +0500 Subject: [PATCH] [*] fix if else --- modules/net/dap_chain_node_cli_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/net/dap_chain_node_cli_cmd.c b/modules/net/dap_chain_node_cli_cmd.c index f977a32bbf..dbe9600309 100644 --- a/modules/net/dap_chain_node_cli_cmd.c +++ b/modules/net/dap_chain_node_cli_cmd.c @@ -4647,7 +4647,7 @@ static int s_check_cmd(int a_arg_index, int a_argc, char **a_argv, char **a_str_ dap_chain_node_cli_set_reply_text(a_str_reply, "%s datum by hash: %s", l_size_store_datum ? "found" : "not found", l_str_opts_check[OPT_HASH]); - } else + } if (l_str_opts_check[OPT_FILE]) { l_ret = s_get_key_from_file(l_str_opts_check[OPT_FILE], l_str_opts_check[OPT_MIME], l_str_opts_check[OPT_CERT], &l_sign); -- GitLab