diff options
Diffstat (limited to 'isisd')
-rw-r--r-- | isisd/isis_lsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isisd/isis_lsp.c b/isisd/isis_lsp.c index 48e3147d..50289db3 100644 --- a/isisd/isis_lsp.c +++ b/isisd/isis_lsp.c @@ -769,7 +769,7 @@ lsp_print_detail (dnode_t * node, struct vty *vty, char dynhost) /* for the hostname tlv */ if (lsp->tlv_data.hostname) { - bzero (hostname, sizeof (hostname)); + memset (hostname, 0, sizeof (hostname)); memcpy (hostname, lsp->tlv_data.hostname->name, lsp->tlv_data.hostname->namelen); vty_out (vty, " Hostname: %s%s", hostname, VTY_NEWLINE); |