From ec5e42b3c50e3a8e95963161319fa1a56466b2ae Mon Sep 17 00:00:00 2001 From: Jeremy Jackson Date: Wed, 21 Jan 2009 20:51:57 -0500 Subject: [cleanup] convert bzero() deprecated by POSIX to memset() autoscan 2.62 complains about bzero(), so a good fix nowadays is to just replace it. --- isisd/isis_lsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'isisd/isis_lsp.c') 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); -- cgit v1.2.1