forked from Mirror/frr
isisd: Fix dislaying LSP ID
If "no hostname dynamic" command is used this fix correctly displays the LSP ID. Signed-off-by: Lynne Morrison <lynne.morrison@ibm.com>
This commit is contained in:
parent
6be9452e50
commit
1f201c6f03
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue