summaryrefslogtreecommitdiff
path: root/etc/rc
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1998-07-11 08:41:35 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1998-07-11 08:41:35 +0000
commite5dacde71abb778a482b0060852363c889f2bf37 (patch)
tree35915125faac62fbdcec3246a2ce92c6a082f56a /etc/rc
parentdc9c0c70446efdf1849edee5b122994bcd7055f7 (diff)
change last route to route -n
Diffstat (limited to 'etc/rc')
-rw-r--r--etc/rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc b/etc/rc
index b7d6c64cacf..1d2012f0291 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,4 +1,4 @@
-# $OpenBSD: rc,v 1.79 1998/07/05 02:50:08 todd Exp $
+# $OpenBSD: rc,v 1.80 1998/07/11 08:41:34 deraadt Exp $
# System startup script run by init on autoboot
# or after single-user.
@@ -119,7 +119,7 @@ if [ -f /etc/ifaliases ]; then
set -- `sed -e 's/#.*$//' /etc/ifaliases | grep -v '^$'`
while [ $# -ge 3 ] ; do
ifconfig $1 inet alias $2 netmask $3
- route add -host $2 localhost
+ route -n add -host $2 localhost
shift 3
done
)