Skip to content

Commit

Permalink
Merge pull request FRRouting#14942 from FRRouting/mergify/bp/stable/9…
Browse files Browse the repository at this point in the history
….1/pr-14939

isisd: Fix dislaying LSP ID (backport FRRouting#14939)
  • Loading branch information
ton31337 authored Dec 5, 2023
2 parents a8defd3 + eecae56 commit 9434848
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 9434848

Please sign in to comment.