From owner-freebsd-hackers Sun Jun 25 02:18:02 1995 Return-Path: hackers-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id CAA15583 for hackers-outgoing; Sun, 25 Jun 1995 02:18:02 -0700 Received: from silvia.HIP.Berkeley.EDU (silvia.HIP.Berkeley.EDU [136.152.64.181]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id CAA15577 for ; Sun, 25 Jun 1995 02:17:54 -0700 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.6.11/8.6.9) id CAA00658; Sun, 25 Jun 1995 02:17:36 -0700 Date: Sun, 25 Jun 1995 02:17:36 -0700 Message-Id: <199506250917.CAA00658@silvia.HIP.Berkeley.EDU> To: hackers@freebsd.org Subject: terse output from sysctl in netstart From: asami@cs.berkeley.edu (Satoshi Asami) Sender: hackers-owner@freebsd.org Precedence: bulk The following lines are in /etc/netstart: === if [ -n "$tcp_extensions" -a "x$tcp_extensions" = "xNO" ] ; then sysctl -nw net.inet.tcp.rfc1323=0 sysctl -nw net.inet.tcp.rfc1644=0 fi === The output from these lines look like: === 0 0 === Which looks more than a little puzzling during bootup. Will anyone scream bloody murder if I take out the `n' from the flags? Then the output will be like === net.inet.tcp.rfc1323: 1 -> 0 net.inet.tcp.rfc1644: 1 -> 0 === which is far more informative for newbies like me. Satoshi