Skip to content

Commit

Permalink
Merge pull request FRRouting#14939 from rampxxxx/isis_lsp_id
Browse files Browse the repository at this point in the history
isisd: Fix dislaying LSP ID
  • Loading branch information
ton31337 authored Dec 5, 2023
2 parents c1cab07 + 1f201c6 commit 270c6c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isisd/isis_lsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ void lspid_print(uint8_t *lsp_id, char *dest, size_t dest_len, char dynhost,
else if (!memcmp(isis->sysid, lsp_id, ISIS_SYS_ID_LEN) && dynhost)
snprintf(id, sizeof(id), "%.14s", cmd_hostname_get());
else
snprintf(id, sizeof(id), "%pSY", lsp_id);
snprintfrr(id, sizeof(id), "%pSY", lsp_id);

if (frag)
snprintf(dest, dest_len, "%s.%02x-%02x", id,
Expand Down

0 comments on commit 270c6c8

Please sign in to comment.