Source-Changes-HG archive

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

[src/netbsd-1-4]: src/usr.bin/systat Pull up revision 1.11 (requested by he):



details:   https://anonhg.NetBSD.org/src/rev/4f864617c5a4
branches:  netbsd-1-4
changeset: 469499:4f864617c5a4
user:      he <he%NetBSD.org@localhost>
date:      Sun Sep 26 13:37:22 1999 +0000

description:
Pull up revision 1.11 (requested by he):
  LP64 and type sanity fixes, with visible effects of enabling echo
  on commands and correct cursor placement after update.

diffstat:

 usr.bin/systat/netstat.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r fdb080af9502 -r 4f864617c5a4 usr.bin/systat/netstat.c
--- a/usr.bin/systat/netstat.c  Sun Sep 26 13:36:43 1999 +0000
+++ b/usr.bin/systat/netstat.c  Sun Sep 26 13:37:22 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netstat.c,v 1.10 1998/08/25 20:59:40 ross Exp $        */
+/*     $NetBSD: netstat.c,v 1.10.2.1 1999/09/26 13:37:22 he Exp $      */
 
 /*-
  * Copyright (c) 1980, 1992, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)netstat.c  8.1 (Berkeley) 6/6/93";
 #endif
-__RCSID("$NetBSD: netstat.c,v 1.10 1998/08/25 20:59:40 ross Exp $");
+__RCSID("$NetBSD: netstat.c,v 1.10.2.1 1999/09/26 13:37:22 he Exp $");
 #endif /* not lint */
 
 /*
@@ -198,7 +198,7 @@
                return;
        }
 again:
-       KREAD(off, &pcbtable, sizeof (struct inpcbtable));
+       KREAD(off, &pcbtable, sizeof pcbtable);
        prev = head = (struct inpcb *)&((struct inpcbtable *)off)->inpt_queue;
        next = pcbtable.inpt_queue.cqh_first;
        while (next != head) {



Home | Main Index | Thread Index | Old Index