Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lldp_basman_cmds.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ static int _set_arg_info(struct cmd *cmd, UNUSED char *arg, char *argvalue,
cmd->tlvid, argvalue))
return cmd_failed;

snprintf(obuf, obuf_len, "enableTx = %s\n", argvalue);
snprintf(obuf, obuf_len, "info = %s\n", argvalue);

somethingChangedLocal(cmd->ifname, cmd->type);

Expand Down Expand Up @@ -394,5 +394,5 @@ int set_arg_ipv6(struct cmd *cmd, char *arg, char *argvalue,
int test_arg_ipv6(struct cmd *cmd, char *arg, char *argvalue,
char *obuf, int obuf_len)
{
return _set_arg_ipv6(cmd, arg, argvalue, obuf, obuf_len, false);
return _set_arg_ipv6(cmd, arg, argvalue, obuf, obuf_len, true);
}
Loading