diff options
author | asami <asami@FreeBSD.org> | 1995-06-25 09:35:56 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-06-25 09:35:56 +0000 |
commit | 0aa964fdced8b1102e1162c32a4e5d497a5a7754 (patch) | |
tree | 5e396fe25c3c197fffa99e99763a617debe96697 /etc/netstart | |
parent | 2f4a3ba54808b6484875da2ea703df91750828cc (diff) | |
download | FreeBSD-src-0aa964fdced8b1102e1162c32a4e5d497a5a7754.zip FreeBSD-src-0aa964fdced8b1102e1162c32a4e5d497a5a7754.tar.gz |
Change "sysctl -nw" to "sysctl -w" to make the output more informative.
Reviewed by: rgrimes
Diffstat (limited to 'etc/netstart')
-rwxr-xr-x | etc/netstart | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/netstart b/etc/netstart index 5479527..eccc7ec 100755 --- a/etc/netstart +++ b/etc/netstart @@ -1,6 +1,6 @@ #!/bin/sh - # -# $Id: netstart,v 1.31 1995/05/11 21:11:14 jkh Exp $ +# $Id: netstart,v 1.32 1995/05/17 04:46:56 rgrimes Exp $ # From: @(#)netstart 5.9 (Berkeley) 3/30/91 # Note that almost all the user-configurable behavior is no longer in @@ -29,8 +29,8 @@ fi # relocation of sysctl to /sbin is done that problem will go away. # if [ -n "$tcp_extensions" -a "x$tcp_extensions" = "xNO" ] ; then - sysctl -nw net.inet.tcp.rfc1323=0 - sysctl -nw net.inet.tcp.rfc1644=0 + sysctl -w net.inet.tcp.rfc1323=0 + sysctl -w net.inet.tcp.rfc1644=0 fi # Set up all the network interfaces, calling startup scripts if needed |