From c3d26c72982bc95906afb58fb46f1268bc915a3b Mon Sep 17 00:00:00 2001 From: hasso Date: Mon, 7 Mar 2005 08:54:41 +0000 Subject: * isis_spf.c: host.name might be NULL. [backport candidate] --- isisd/ChangeLog | 4 ++++ isisd/isis_spf.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'isisd') diff --git a/isisd/ChangeLog b/isisd/ChangeLog index c71f0568..d7fadd0c 100644 --- a/isisd/ChangeLog +++ b/isisd/ChangeLog @@ -1,3 +1,7 @@ +2005-03-07 Michael Sandee + + * isis_spf.c: host.name might be NULL. + 2005-02-23 Andrew J. Schorr * isis_main.c: (reload) Call vty_reset instead of vty_finish (both diff --git a/isisd/isis_spf.c b/isisd/isis_spf.c index 66d4ca7e..90a9ac58 100644 --- a/isisd/isis_spf.c +++ b/isisd/isis_spf.c @@ -1279,7 +1279,8 @@ isis_print_paths (struct vty *vty, struct list *paths) continue; if (memcmp (vertex->N.id, isis->sysid, ISIS_SYS_ID_LEN) == 0) { - vty_out (vty, "%s --%s", host.name, VTY_NEWLINE); + vty_out (vty, "%s --%s", host.name?host.name:"", + VTY_NEWLINE); } else { -- cgit v1.2.1