diff options
author | Russ White <russ@riw.us> | 2022-03-08 17:15:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 17:15:25 +0100 |
commit | 82934a6a326977b40dd2d31772e6e4c7f2953d0b (patch) | |
tree | 7b258b5eab8bd02690ddbe22b35bdb468a489784 /isisd/isis_pdu.c | |
parent | Merge pull request #10722 from chiragshah6/evpn_dev3 (diff) | |
parent | topotest: Add test for isis json cmds. (diff) | |
download | frr-82934a6a326977b40dd2d31772e6e4c7f2953d0b.tar.xz frr-82934a6a326977b40dd2d31772e6e4c7f2953d0b.zip |
Merge pull request #10701 from rampxxxx/feat_isis_json_show_cmds
Feat isis json show cmds
Diffstat (limited to 'isisd/isis_pdu.c')
-rw-r--r-- | isisd/isis_pdu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/isisd/isis_pdu.c b/isisd/isis_pdu.c index 517c9ec5a..1a54d47f3 100644 --- a/isisd/isis_pdu.c +++ b/isisd/isis_pdu.c @@ -2209,7 +2209,7 @@ int send_csnp(struct isis_circuit *circuit, int level) circuit->interface->name, stream_get_endp(circuit->snd_stream)); log_multiline(LOG_DEBUG, " ", "%s", - isis_format_tlvs(tlvs)); + isis_format_tlvs(tlvs, NULL)); if (IS_DEBUG_PACKET_DUMP) zlog_dump_data( STREAM_DATA(circuit->snd_stream), @@ -2368,7 +2368,7 @@ static int send_psnp(int level, struct isis_circuit *circuit) circuit->interface->name, stream_get_endp(circuit->snd_stream)); log_multiline(LOG_DEBUG, " ", "%s", - isis_format_tlvs(tlvs)); + isis_format_tlvs(tlvs, NULL)); if (IS_DEBUG_PACKET_DUMP) zlog_dump_data( STREAM_DATA(circuit->snd_stream), |