typo + comment
authormillert <millert@openbsd.org>
Sat, 7 Sep 1996 20:45:24 +0000 (20:45 +0000)
committermillert <millert@openbsd.org>
Sat, 7 Sep 1996 20:45:24 +0000 (20:45 +0000)
etc/rc

diff --git a/etc/rc b/etc/rc
index 3c7da6b..daf4b9c 100644 (file)
--- a/etc/rc
+++ b/etc/rc
@@ -1,4 +1,4 @@
-#      $OpenBSD: rc,v 1.23 1996/09/04 10:25:53 deraadt Exp $
+#      $OpenBSD: rc,v 1.24 1996/09/07 20:45:24 millert Exp $
 
 # System startup script run by init on autoboot
 # or after single-user.
@@ -87,7 +87,10 @@ rm -f /var/spool/uucp/STST/*
 (cd /var/run && { rm -rf -- *; install -c -m 664 -g utmp /dev/null utmp; })
 
 echo -n 'starting rpc daemons:'
-if [ X"${portmap}" == X"YES" ]; then
+
+# $portmap is imported from /etc/netstart;
+# if $portmap == YES, the portmapper is started.
+if [ X"${portmap}" = X"YES" ]; then
        echo -n ' portmap';             portmap
 fi