Module Name: src
Committed By: martin
Date: Sat Aug 25 07:06:48 UTC 2018
Modified Files:
src/sbin/route [netbsd-8]: route.c
Log Message:
Pull up following revision(s) (requested by roy in ticket #976):
sbin/route/route.c: revision 1.160
Resolve every route(4) message type before printing anything more about it
other than the type and length.
This solves the issue where RTM_ONEWADDR is received and it tries to
parse route information from it.
To generate a diff of this commit:
cvs rdiff -u -r1.155.4.3 -r1.155.4.4 src/sbin/route/route.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sbin/route/route.c
diff -u src/sbin/route/route.c:1.155.4.3 src/sbin/route/route.c:1.155.4.4
--- src/sbin/route/route.c:1.155.4.3 Mon Apr 9 13:34:11 2018
+++ src/sbin/route/route.c Sat Aug 25 07:06:48 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: route.c,v 1.155.4.3 2018/04/09 13:34:11 bouyer Exp $ */
+/* $NetBSD: route.c,v 1.155.4.4 2018/08/25 07:06:48 martin Exp $ */
/*
* Copyright (c) 1983, 1989, 1991, 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1983, 19
#if 0
static char sccsid[] = "@(#)route.c 8.6 (Berkeley) 4/28/95";
#else
-__RCSID("$NetBSD: route.c,v 1.155.4.3 2018/04/09 13:34:11 bouyer Exp $");
+__RCSID("$NetBSD: route.c,v 1.155.4.4 2018/08/25 07:06:48 martin Exp $");
#endif
#endif /* not lint */
@@ -1462,11 +1462,14 @@ print_rtmsg(struct rt_msghdr *rtm, int m
}
printf("\n");
break;
- default:
+ case RTM_ADD:
+ case RTM_DELETE:
+ case RTM_GET:
(void)printf("pid %d, seq %d, errno %d, flags: ",
rtm->rtm_pid, rtm->rtm_seq, rtm->rtm_errno);
bprintf(stdout, rtm->rtm_flags, routeflags);
pmsg_common(rtm);
+ break;
}
}