aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1994-04-25 15:33:12 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1994-04-25 15:33:12 +0000
commitc289dd04859f3eff52fa9ab081586e27b785f5c7 (patch)
tree52a5e051aec854a8a7c25202fb7f1bb4a8a7fd52 /etc
parent2caac73e76c17c2d2648f15f232bb37306d8d780 (diff)
downloadsrc-c289dd04859f3eff52fa9ab081586e27b785f5c7.tar.gz
src-c289dd04859f3eff52fa9ab081586e27b785f5c7.zip
Fix to handle routed with multiple args from Andy J. Chichak.
This should go into 1.1 Release if it's not too late.
Notes
Notes: svn path=/head/; revision=1412
Diffstat (limited to 'etc')
-rw-r--r--etc/rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc b/etc/rc
index 1ca21806a806..79095b89a498 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id: rc,v 1.20 1994/02/27 15:32:09 phk Exp $
+# $Id: rc,v 1.21 1994/03/25 04:58:58 rich Exp $
# From: @(#)rc 5.27 (Berkeley) 6/5/91
# System startup script run by init on autoboot
@@ -156,7 +156,7 @@ fi
# If $routedflags == NO, routed isn't run.
if [ X${gated} = X"YES" -a -r /etc/gated.conf ]; then
echo -n ' gated'; gated $gatedflags
-elif [ X${routedflags} != X"NO" ]; then
+elif [ X"${routedflags}" != X"NO" ]; then
echo -n ' routed'; routed $routedflags
fi