Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-8]: src/sbin/route Pull up following revision(s) (requested by ro...



details:   https://anonhg.NetBSD.org/src/rev/1f3e1530e9eb
branches:  netbsd-8
changeset: 851937:1f3e1530e9eb
user:      martin <martin%NetBSD.org@localhost>
date:      Sat Aug 25 07:06:48 2018 +0000

description:
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.

diffstat:

 sbin/route/route.c |  9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diffs (34 lines):

diff -r 1f9da8528351 -r 1f3e1530e9eb sbin/route/route.c
--- a/sbin/route/route.c        Wed Aug 15 12:16:31 2018 +0000
+++ b/sbin/route/route.c        Sat Aug 25 07:06:48 2018 +0000
@@ -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 @@
 #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 @@
                }
                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;
        }
 }
 



Home | Main Index | Thread Index | Old Index