diff options
| author | Ollivier Robert <roberto@FreeBSD.org> | 1999-01-18 12:40:44 +0000 |
|---|---|---|
| committer | Ollivier Robert <roberto@FreeBSD.org> | 1999-01-18 12:40:44 +0000 |
| commit | bca92d96b8552d9862e7621e36f2dade5927c7f0 (patch) | |
| tree | bd2bd862a66ae789a562d72fc5ad41df5123ff90 /usr.bin/netstat | |
| parent | 6659b74d5c1c9a7da4be6cab343e0cf8a614cd53 (diff) | |
Fix "make world" breakage because MT_RTABLE was still referenced here.
Notes
svn path=/head/; revision=42800
Diffstat (limited to 'usr.bin/netstat')
| -rw-r--r-- | usr.bin/netstat/mbuf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/netstat/mbuf.c b/usr.bin/netstat/mbuf.c index c1324969ce79..76e001fdc827 100644 --- a/usr.bin/netstat/mbuf.c +++ b/usr.bin/netstat/mbuf.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)mbuf.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: mbuf.c,v 1.13 1998/08/18 13:36:47 jb Exp $"; + "$Id: mbuf.c,v 1.14 1998/08/23 15:23:11 gpalmer Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -68,7 +68,9 @@ static struct mbtypes { #ifdef MT_PCB { MT_PCB, "protocol control blocks" }, /* XXX */ #endif +#ifdef MT_RTABLE { MT_RTABLE, "routing table entries" }, /* XXX */ +#endif #ifdef MT_HTABLE { MT_HTABLE, "IMP host table entries" }, /* XXX */ #endif |
