Index: net/bsd_tcpip/current//ChangeLog =================================================================== RCS file: /cvs/ecos/ecos-opt/net/net/bsd_tcpip/current/ChangeLog,v retrieving revision 1.42 diff -u -r1.42 ChangeLog --- net/bsd_tcpip/current//ChangeLog 18 Feb 2004 11:05:15 -0000 1.42 +++ net/bsd_tcpip/current//ChangeLog 27 Mar 2004 18:14:56 -0000 @@ -1,3 +1,8 @@ +2004-03-27 Andrew Lunn + + * src/ecos/support.c (_dumpentry): Don't skip routes which don't + have a netmask. These are seem to be valid host routes. + 2004-02-18 Jonathan Larmour * doc/freebsd.sgml: Import text from openbsd doc about use of __ECOS Index: net/bsd_tcpip/current//src/ecos/support.c =================================================================== RCS file: /cvs/ecos/ecos-opt/net/net/bsd_tcpip/current/src/ecos/support.c,v retrieving revision 1.11 diff -u -r1.11 support.c --- net/bsd_tcpip/current//src/ecos/support.c 22 Nov 2003 12:59:21 -0000 1.11 +++ net/bsd_tcpip/current//src/ecos/support.c 27 Mar 2004 18:14:58 -0000 @@ -1022,9 +1022,6 @@ netmask = rt_mask(rt); genmask = rt->rt_genmask; if ((rt->rt_flags & (RTF_UP | RTF_WASCLONED)) == RTF_UP) { - if (netmask == NULL) { - return 0; - } _inet_ntop(dst, addr, sizeof(addr)); (*pr)("%-15s ", addr); if (gate != NULL) {