From 5bf73b4f790e99bc6270afee8c5fd5c7c31017b1 Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Sat, 11 Jul 1998 08:41:34 +0000 Subject: [PATCH] change last route to route -n --- src/etc/rc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/rc b/src/etc/rc index b7d6c64c..1d2012f0 100644 --- a/src/etc/rc +++ b/src/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 )