Source-Changes-HG archive

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

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



details:   https://anonhg.NetBSD.org/src/rev/d9a83e775f46
branches:  netbsd-7
changeset: 800274:d9a83e775f46
user:      snj <snj%NetBSD.org@localhost>
date:      Wed Jul 26 15:52:57 2017 +0000

description:
Pull up following revision(s) (requested by manu in ticket #1454):
        sbin/route/rtutil.c: revision 1.10
Fix route and netstat -r output when built with -DSMALL
A missing \n caused the routing table to be printed all in one line
if -DSMALL was used.

diffstat:

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

diffs (18 lines):

diff -r 01ace24758b0 -r d9a83e775f46 sbin/route/rtutil.c
--- a/sbin/route/rtutil.c       Wed Jul 26 15:51:45 2017 +0000
+++ b/sbin/route/rtutil.c       Wed Jul 26 15:52:57 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rtutil.c,v 1.4.2.3 2015/01/08 11:47:11 martin Exp $    */
+/*     $NetBSD: rtutil.c,v 1.4.2.4 2017/07/26 15:52:57 snj Exp $       */
 /*     $OpenBSD: show.c,v 1.1 2006/05/27 19:16:37 claudio Exp $        */
 
 /*
@@ -293,6 +293,8 @@
        putchar('\n');
        if (flags & RT_VFLAG)
                p_rtrmx(&rtm->rtm_rmx);
+#else
+       putchar('\n');
 #endif
 }
 



Home | Main Index | Thread Index | Old Index