Skip to content

Commit

Permalink
* FIX [tls] Fix the type in command line arguments.
Browse files Browse the repository at this point in the history
Signed-off-by: wanghaemq <wangwei@emqx.io>
  • Loading branch information
wanghaEMQ committed Sep 8, 2023
1 parent c21a46f commit 0540d9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nanomq_cli/client.c
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ static nng_optspec cmd_opts[] = {
{ .o_name = "will-topic", .o_val = OPT_WILL_TOPIC, .o_arg = true },
{ .o_name = "secure", .o_short = 's', .o_val = OPT_SECURE },
{ .o_name = "quic", .o_val = OPT_QUIC },
{ .o_name = "cafile", .o_val = OPT_CACERT, .o_arg = true },
{ .o_name = "cacert", .o_val = OPT_CACERT, .o_arg = true },
{ .o_name = "key", .o_val = OPT_KEYFILE, .o_arg = true },
{ .o_name = "keypass", .o_val = OPT_KEYPASS, .o_arg = true },
{
Expand Down

0 comments on commit 0540d9e

Please sign in to comment.